diff --git a/src/Mod/CAM/Gui/Command.cpp b/src/Mod/CAM/Gui/Command.cpp index a0b1311a2e..da677ccc58 100644 --- a/src/Mod/CAM/Gui/Command.cpp +++ b/src/Mod/CAM/Gui/Command.cpp @@ -46,7 +46,7 @@ CmdPathArea::CmdPathArea() sAppModule = "Path"; sGroup = QT_TR_NOOP("CAM"); sMenuText = QT_TR_NOOP("Area"); - sToolTipText = QT_TR_NOOP("Creates a feature area from selected objects"); + sToolTipText = QT_TR_NOOP("Creates a feature area from the selected objects"); sWhatsThis = "CAM_Area"; sStatusTip = sToolTipText; sPixmap = "CAM_Area"; @@ -140,8 +140,8 @@ CmdPathAreaWorkplane::CmdPathAreaWorkplane() { sAppModule = "Path"; sGroup = QT_TR_NOOP("CAM"); - sMenuText = QT_TR_NOOP("Area workplane"); - sToolTipText = QT_TR_NOOP("Select a workplane for a FeatureArea"); + sMenuText = QT_TR_NOOP("Area Workplane"); + sToolTipText = QT_TR_NOOP("Selects a workplane for a feature area"); sWhatsThis = "CAM_Area_Workplane"; sStatusTip = sToolTipText; sPixmap = "CAM_Area_Workplane"; @@ -159,14 +159,14 @@ void CmdPathAreaWorkplane::activated(int iMsg) getSelection().getSelectionEx(nullptr, Part::Feature::getClassTypeId())) { const std::vector& subnames = selObj.getSubNames(); if (subnames.size() > 1) { - Base::Console().error("Please select one sub shape object for plane only\n"); + Base::Console().error("Select one sub shape object for plane only\n"); return; } const Part::Feature* pcObj = static_cast(selObj.getObject()); if (subnames.empty()) { if (pcObj->isDerivedFrom()) { if (!areaName.empty()) { - Base::Console().error("Please select one FeatureArea only\n"); + Base::Console().error("Select one feature area only\n"); return; } areaName = pcObj->getNameInDocument(); @@ -179,7 +179,7 @@ void CmdPathAreaWorkplane::activated(int iMsg) } } if (!planeName.empty()) { - Base::Console().error("Please select one shape object for plane only\n"); + Base::Console().error("Select one shape object for plane only\n"); return; } else { @@ -236,7 +236,7 @@ CmdPathCompound::CmdPathCompound() sAppModule = "Path"; sGroup = QT_TR_NOOP("CAM"); sMenuText = QT_TR_NOOP("Compound"); - sToolTipText = QT_TR_NOOP("Creates a compound from selected toolpaths"); + sToolTipText = QT_TR_NOOP("Creates a compound from the selected toolpaths"); sWhatsThis = "CAM_Compound"; sStatusTip = sToolTipText; sPixmap = "CAM_Compound"; @@ -259,7 +259,7 @@ void CmdPathCompound::activated(int iMsg) } else { Base::Console().error( - "Only Path objects must be selected before running this command\n"); + "Only path objects must be selected before running this command\n"); return; } } @@ -277,7 +277,7 @@ void CmdPathCompound::activated(int iMsg) updateActive(); } else { - Base::Console().error("At least one Path object must be selected\n"); + Base::Console().error("At least one path object must be selected\n"); return; } } diff --git a/src/Mod/CAM/Gui/DlgJobChooser.ui b/src/Mod/CAM/Gui/DlgJobChooser.ui index 94cfb25c42..23e5dcfaa1 100644 --- a/src/Mod/CAM/Gui/DlgJobChooser.ui +++ b/src/Mod/CAM/Gui/DlgJobChooser.ui @@ -14,7 +14,7 @@ - Choose a CAM Job + CAM Job Selection diff --git a/src/Mod/CAM/Gui/DlgProcessorChooser.ui b/src/Mod/CAM/Gui/DlgProcessorChooser.ui index 39543d03a6..9f7e3527f2 100644 --- a/src/Mod/CAM/Gui/DlgProcessorChooser.ui +++ b/src/Mod/CAM/Gui/DlgProcessorChooser.ui @@ -11,7 +11,7 @@ - Choose a processor + Processor Selection diff --git a/src/Mod/CAM/Gui/DlgSettingsPathColor.ui b/src/Mod/CAM/Gui/DlgSettingsPathColor.ui index 70d5c9aa53..ac8698592d 100644 --- a/src/Mod/CAM/Gui/DlgSettingsPathColor.ui +++ b/src/Mod/CAM/Gui/DlgSettingsPathColor.ui @@ -33,7 +33,7 @@ - Default Path colors + Default Path Colors @@ -323,7 +323,7 @@ - Path Selection Style + Path selection style @@ -351,7 +351,7 @@ - Bounding Box + Bounding box @@ -364,7 +364,7 @@ - Task Panel Layout + Task panel layout @@ -388,12 +388,12 @@ - Multi Panel + Multi-panel - Multi Panel - reversed + Multi-panel - reversed diff --git a/src/Mod/CAM/Gui/Resources/panels/AxisMapEdit.ui b/src/Mod/CAM/Gui/Resources/panels/AxisMapEdit.ui index 043c5a9f56..17ef4e92d6 100644 --- a/src/Mod/CAM/Gui/Resources/panels/AxisMapEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/AxisMapEdit.ui @@ -34,7 +34,7 @@ - Axis Mapping + Axis mapping diff --git a/src/Mod/CAM/Gui/Resources/panels/DlgJobCreate.ui b/src/Mod/CAM/Gui/Resources/panels/DlgJobCreate.ui index 37da174006..07f27ac1ed 100644 --- a/src/Mod/CAM/Gui/Resources/panels/DlgJobCreate.ui +++ b/src/Mod/CAM/Gui/Resources/panels/DlgJobCreate.ui @@ -11,7 +11,7 @@ - Create Job + New Job @@ -29,7 +29,7 @@ true - Select a template to be used for the job. In case there are no templates you can create one through the popup menu of an existing job. Name the file job_*.json and place it in the macro or the path directory (see preferences) in order to be selectable from this list. + Select a template for the job. Templates are creatable from an existing job's context menu. Template files use the `job_*.json` naming convention and are stored in the macro or path directory (path configurable in preferences). diff --git a/src/Mod/CAM/Gui/Resources/panels/DlgJobModelSelect.ui b/src/Mod/CAM/Gui/Resources/panels/DlgJobModelSelect.ui index e5a1313a3a..c07a25159b 100644 --- a/src/Mod/CAM/Gui/Resources/panels/DlgJobModelSelect.ui +++ b/src/Mod/CAM/Gui/Resources/panels/DlgJobModelSelect.ui @@ -11,7 +11,7 @@ - Select Base Models + Base Model Selection diff --git a/src/Mod/CAM/Gui/Resources/panels/DlgJobTemplateExport.ui b/src/Mod/CAM/Gui/Resources/panels/DlgJobTemplateExport.ui index fcc464e408..0e37d3d7a2 100644 --- a/src/Mod/CAM/Gui/Resources/panels/DlgJobTemplateExport.ui +++ b/src/Mod/CAM/Gui/Resources/panels/DlgJobTemplateExport.ui @@ -17,7 +17,7 @@ - If enabled, include all post processing settings in the template. + If enabled, include all post processing settings in the template Post Processing @@ -35,7 +35,7 @@ Qt::NoFocus - Hint about the current post processing configuration. + Hint about the current post processing configuration @@ -45,7 +45,7 @@ - If enabled, tool controller definitions are stored in the template. + If enabled, tool controller definitions are stored in the template Tools @@ -57,7 +57,7 @@ - Check all tool controllers which should be included in the template. + Check all tool controllers which should be included in the template @@ -67,9 +67,7 @@ - Enable to include values of the SetupSheet in the template. - -Any values of the SetupSheet that are changed from their default are preselected. If this field not selected the current SetupSheet was not modified. + Includes SetupSheet values in the template. Any SetupSheet values modified from their default are preselected. Setup Sheet @@ -81,10 +79,10 @@ Any values of the SetupSheet that are changed from their default are preselected - Enable to include the default heights for operations in the template. + Enable to include the default heights for operations in the template - Operation Heights + Operation heights true @@ -94,7 +92,7 @@ Any values of the SetupSheet that are changed from their default are preselected - Operation Depths + Operation depths true @@ -104,10 +102,10 @@ Any values of the SetupSheet that are changed from their default are preselected - Enable to include the default rapid tool speeds in the template. + Enable to include the default rapid tool speeds in the template - Tool Rapid Speeds + Tool rapid speeds true @@ -117,7 +115,7 @@ Any values of the SetupSheet that are changed from their default are preselected - Enable to include the default coolant mode in the template. + Enable to include the default coolant mode in the template Coolant Mode @@ -160,9 +158,9 @@ Note that this option is disabled if a stock object from an existing solid is us If enabled, the current size settings for the stock object are included in the template. -For Box and Cylinder stocks this means the actual size of the stock solid being created. +For box and cylinder stocks this means the actual size of the stock solid being created. -For stock from the Base object's bounding box it means the extra material in all directions. A stock object created from such a template will get its basic size from the new job's Base object and apply the stored extra settings. +For stock from the base object's bounding box it means the extra material in all directions. A stock object created from such a template will get its basic size from the new job's base object and apply the stored extra settings. Extent @@ -181,14 +179,14 @@ For stock from the Base object's bounding box it means the extra material in all Qt::NoFocus - Hint about the current stock extent setting. + Hint about the current stock extent setting - If enabled, the current placement of the stock solid is stored in the template. + If enabled, the current placement of the stock solid is stored in the template Placement @@ -207,7 +205,7 @@ For stock from the Base object's bounding box it means the extra material in all Qt::NoFocus - Hint about the current stock placement. + Hint about the current stock placement diff --git a/src/Mod/CAM/Gui/Resources/panels/DlgSelectPostProcessor.ui b/src/Mod/CAM/Gui/Resources/panels/DlgSelectPostProcessor.ui index 1fd5407d75..d3f4dac439 100644 --- a/src/Mod/CAM/Gui/Resources/panels/DlgSelectPostProcessor.ui +++ b/src/Mod/CAM/Gui/Resources/panels/DlgSelectPostProcessor.ui @@ -39,7 +39,7 @@ - Select one of the post processors. FreeCAD comes with several post processors pre-installed, please make sure at least one of them is enabled in your preferences. + Displays available post processors. FreeCAD includes several pre-installed post processors. At least one post processor must be enabled in preferences. diff --git a/src/Mod/CAM/Gui/Resources/panels/DlgTCChooser.ui b/src/Mod/CAM/Gui/Resources/panels/DlgTCChooser.ui index a9ab7d0ed8..37fc9e33d5 100644 --- a/src/Mod/CAM/Gui/Resources/panels/DlgTCChooser.ui +++ b/src/Mod/CAM/Gui/Resources/panels/DlgTCChooser.ui @@ -20,13 +20,13 @@ - Choose a Tool Controller + Tool Controller Selection - Tool Controller + Tool controller diff --git a/src/Mod/CAM/Gui/Resources/panels/DlgToolControllerEdit.ui b/src/Mod/CAM/Gui/Resources/panels/DlgToolControllerEdit.ui index ad04f72ccc..511aafc20e 100644 --- a/src/Mod/CAM/Gui/Resources/panels/DlgToolControllerEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/DlgToolControllerEdit.ui @@ -32,7 +32,7 @@ - Controller Name / Tool Number + Controller Name / Tool Number @@ -64,7 +64,7 @@ - Horiz. Feed + Horizontal feed @@ -93,7 +93,7 @@ - Vert. Feed + Vertical feed @@ -122,7 +122,7 @@ - Horiz Rapid + Horizontal rapid @@ -151,7 +151,7 @@ - Vert Rapid + Vertical rapid diff --git a/src/Mod/CAM/Gui/Resources/panels/DogboneEdit.ui b/src/Mod/CAM/Gui/Resources/panels/DogboneEdit.ui index 66a9bf8d93..d31fa36c32 100644 --- a/src/Mod/CAM/Gui/Resources/panels/DogboneEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/DogboneEdit.ui @@ -118,17 +118,17 @@ - adaptive + Adaptive - custom + Custom - fixed + Fixed diff --git a/src/Mod/CAM/Gui/Resources/panels/DragKnifeEdit.ui b/src/Mod/CAM/Gui/Resources/panels/DragKnifeEdit.ui index 6548f2ad9d..935ef17f6d 100644 --- a/src/Mod/CAM/Gui/Resources/panels/DragKnifeEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/DragKnifeEdit.ui @@ -34,7 +34,7 @@ - Offset Distance + Offset distance @@ -60,7 +60,7 @@ - Pivot Height + Pivot height diff --git a/src/Mod/CAM/Gui/Resources/panels/DressUpLeadInOutEdit.ui b/src/Mod/CAM/Gui/Resources/panels/DressUpLeadInOutEdit.ui index 5edf0b83fa..d256ef50c2 100644 --- a/src/Mod/CAM/Gui/Resources/panels/DressUpLeadInOutEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/DressUpLeadInOutEdit.ui @@ -25,10 +25,10 @@ - Enable Lead-in move + Enable lead-in move - Enable Lead In + Enable lead-in @@ -58,14 +58,14 @@ - Length / Radius + Length/radius - length or radius of the Lead-in + Length or radius of the lead-in 0.100000000000000 @@ -85,7 +85,7 @@ - extends the leadin distance + Extends the lead-in distance @@ -99,10 +99,10 @@ - Enable Lead-out move + Enable lead-out move - Enable Lead Out + Enable lead out @@ -132,14 +132,14 @@ - Length / Radius + Length/radius - length or radius of the Lead-out + Length or radius of the lead-out 0.100000000000000 @@ -159,7 +159,7 @@ - Extends the leadout distance + Extends the lead-out distance @@ -182,17 +182,17 @@ Plunge at rapid speed - Rapid Plunge + Rapid plunge - Apply Lead In/Out on all layers + Apply lead-in/out on all layers - Include Layers + Include layers @@ -202,7 +202,7 @@ Keep the tool down in the path - Keep Tool Down + Keep tool down diff --git a/src/Mod/CAM/Gui/Resources/panels/DressupPathBoundary.ui b/src/Mod/CAM/Gui/Resources/panels/DressupPathBoundary.ui index 804150a6ed..01c6a04b1c 100644 --- a/src/Mod/CAM/Gui/Resources/panels/DressupPathBoundary.ui +++ b/src/Mod/CAM/Gui/Resources/panels/DressupPathBoundary.ui @@ -42,22 +42,22 @@ - Create Box + Create box - Create Cylinder + Create cylinder - Extend Model's Bounding Box + Extend model's bounding box - Use Existing Solid + Use existing solid @@ -84,7 +84,7 @@ - Select the body to be used to constrain the underlying Path. + Select the body to be used to constrain the underlying path @@ -179,7 +179,7 @@ - Radius of the Cylinder + Radius of the cylinder @@ -193,7 +193,7 @@ - Height of the Cylinder + Height of the cylinder @@ -213,7 +213,7 @@ - Length of the Box + Length of the box @@ -227,7 +227,7 @@ - Width of the Box + Width of the box @@ -241,7 +241,7 @@ - Height of the Box + Height of the box @@ -257,7 +257,7 @@ If checked, the path is constrained by the solid. Otherwise the volume of the solid describes a 'keep out' zone - Constrained to Inside + Constrained to inside true diff --git a/src/Mod/CAM/Gui/Resources/panels/HoldingTagsEdit.ui b/src/Mod/CAM/Gui/Resources/panels/HoldingTagsEdit.ui index cbceb97244..93c8f1bdac 100644 --- a/src/Mod/CAM/Gui/Resources/panels/HoldingTagsEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/HoldingTagsEdit.ui @@ -44,7 +44,7 @@ - Width of the resulting holding tag. + Width of the resulting holding tag @@ -58,7 +58,7 @@ - Plunge angle for ascent and descent of holding tag. + Plunge angle for ascent and descent of holding tag 5.000000000000000 @@ -123,14 +123,14 @@ false - Edit... + Edit - Add... + Add diff --git a/src/Mod/CAM/Gui/Resources/panels/PageBaseGeometryEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageBaseGeometryEdit.ui index 10c4d94f92..0c8f6fa153 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageBaseGeometryEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageBaseGeometryEdit.ui @@ -33,7 +33,7 @@ - List of operations with Base Geometry in current Job + List of operations with base geometry in the current job @@ -96,7 +96,7 @@ - All objects will be processed using the same operation properties. + All objects will be processed using the same operation properties Qt::AlignCenter diff --git a/src/Mod/CAM/Gui/Resources/panels/PageBaseHoleGeometryEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageBaseHoleGeometryEdit.ui index 190a75f33e..6f8e25fc3f 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageBaseHoleGeometryEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageBaseHoleGeometryEdit.ui @@ -21,9 +21,9 @@ Table of hole features and the determined radius of the associated hole. -You can add feature for processing by selecting them and then pressing Add. If a feature is accidentally added to the list it can be removed through Remove and will no longer be processed. +Add features for processing by selecting them and then pressing 'Add'. If a feature is accidentally added to the list, it can be removed through 'Remove' and will no longer be processed. -Reset deletes all current items from the list and fills the list with all circular holes eligible for the operation from the model. You can again refine the list afterwards by enabling/disabling, removing and adding features. +Reset deletes all current items from the list and fills the list with all circular holes eligible for the operation from the model. Refine the list afterwards by enabling/disabling, removing and adding features. true diff --git a/src/Mod/CAM/Gui/Resources/panels/PageBaseLocationEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageBaseLocationEdit.ui index 924a12b1f6..58f6b4471a 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageBaseLocationEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageBaseLocationEdit.ui @@ -17,7 +17,7 @@ - List of locations to be processed. + List of locations to be processed @@ -37,7 +37,7 @@ - Opens a dialog to add arbitrary locations. + Opens a dialog to add arbitrary locations Add @@ -57,7 +57,7 @@ - Edit selected location. + Edit selected location Edit @@ -67,7 +67,7 @@ - All locations will be processed using the same operation properties. + All locations will be processed using the same operation properties Qt::AutoText diff --git a/src/Mod/CAM/Gui/Resources/panels/PageDepthsEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageDepthsEdit.ui index 8834a594a6..408363b60a 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageDepthsEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageDepthsEdit.ui @@ -36,14 +36,14 @@ - Start Depth + Start depth - Start Depth of the operation. The highest point in Z-axis the operation needs to process. + Start depth of the operation. The highest point in Z-axis the operation needs to process. -999999999.000000000000000 @@ -56,10 +56,10 @@ - Transfer the Z value of the selected feature as the Start Depth for the operation. + Transfer the Z value of the selected feature as the start depth for the operation - ... + @@ -82,7 +82,7 @@ - Final Depth + Final depth @@ -102,10 +102,10 @@ - Transfer the Z value of the selected feature as the Final Depth for the operation. + Transfer the Z value of the selected feature as the final depth for the operation - ... + @@ -128,14 +128,14 @@ - Step Down + Step down - The depth in Z-axis the operation moves downwards between layers. This value depends on the tool being used, the material to be cut, available cooling and many other factors. Please consult the tool manufacturers data sheets for the proper value. + The depth in Z-axis the operation moves downwards between layers. This value depends on the tool being used, the material to be cut, available cooling and many other factors. Consult the tool manufacturers data sheets for the proper value. -999999999.000000000000000 @@ -160,7 +160,7 @@ - Finish Step Down + Finish step down diff --git a/src/Mod/CAM/Gui/Resources/panels/PageDiametersEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageDiametersEdit.ui index 3b6caf57cd..ec2be04355 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageDiametersEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageDiametersEdit.ui @@ -24,7 +24,7 @@ - Start Depth of the operation. The highest point in Z-axis the operation needs to process. + Start depth of the operation. The highest point in Z-axis the operation needs to process. Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -40,10 +40,10 @@ - Transfer the Z value of the selected feature as the Start Depth for the operation. + Transfer the Z value of the selected feature as the start depth for the operation - ... + @@ -54,7 +54,7 @@ - Max Diameter + Max diameter @@ -77,10 +77,10 @@ - Transfer the Z value of the selected feature as the Final Depth for the operation. + Transfer the Z value of the selected feature as the final depth for the operation. - ... + diff --git a/src/Mod/CAM/Gui/Resources/panels/PageHeightsEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageHeightsEdit.ui index ceab3ede12..7febd2ec12 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageHeightsEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageHeightsEdit.ui @@ -21,7 +21,7 @@ - Safe Height + Safe height @@ -44,7 +44,7 @@ - Clearance Height + Clearance height diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpAdaptiveEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpAdaptiveEdit.ui index 91ae04896c..f586297a34 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpAdaptiveEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpAdaptiveEdit.ui @@ -20,7 +20,7 @@ - Tool Controller + Tool controller @@ -61,7 +61,7 @@ - Accuracy vs Performance + Accuracy vs performance @@ -98,7 +98,7 @@ Larger values (further to the right) will calculate faster; smaller values (furt - Force Clearing Inside-out + Force clearing inside-out @@ -119,7 +119,7 @@ Larger values (further to the right) will calculate faster; smaller values (furt - Finishing Profile + Finishing profile @@ -136,7 +136,7 @@ Larger values (further to the right) will calculate faster; smaller values (furt - XY Stock to Leave + XY stock to leave @@ -162,7 +162,7 @@ Larger values (further to the right) will calculate faster; smaller values (furt - Step Over Percent + Step over percent @@ -179,21 +179,21 @@ Larger values (further to the right) will calculate faster; smaller values (furt - Helix Ramp Angle + Helix ramp angle - Use Outline + Use outline - Operation Type + Operation type @@ -210,7 +210,7 @@ Larger values (further to the right) will calculate faster; smaller values (furt - Keep Tool Down Ratio + Keep tool down ratio @@ -227,7 +227,7 @@ Larger values (further to the right) will calculate faster; smaller values (furt - Helix Cone Angle + Helix cone angle @@ -244,14 +244,14 @@ Larger values (further to the right) will calculate faster; smaller values (furt - Lift Distance + Lift distance - Cut Region + Cut region @@ -268,7 +268,7 @@ Larger values (further to the right) will calculate faster; smaller values (furt - Helix Max Diameter + Helix max diameter @@ -287,7 +287,7 @@ This option changes that behavior to cut each discrete area to its full depth be - Z Stock to Leave + Z stock to leave diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpCustomEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpCustomEdit.ui index 38db977972..e7f084e0fc 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpCustomEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpCustomEdit.ui @@ -32,21 +32,21 @@ - Tool Controller + Tool controller - The tool and its settings to be used for this operation. + The tool and its settings to be used for this operation - Coolant Mode + Coolant mode diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpDeburrEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpDeburrEdit.ui index b10d7c6c19..8b0ae3bdb8 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpDeburrEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpDeburrEdit.ui @@ -50,14 +50,14 @@ - Tool Controller + Tool controller - The tool and its settings to be used for this operation. + The tool and its settings to be used for this operation @@ -82,14 +82,14 @@ - Coolant Mode + Coolant mode - The tool and its settings to be used for this operation. + The tool and its settings to be used for this operation @@ -135,7 +135,7 @@ - The direction in which the profile is performed, clockwise or counterclockwise. + The direction in which the profile is performed, clockwise or counterclockwise CW @@ -192,7 +192,7 @@ - Width of chamfer cut. + Width of chamfer cut mm @@ -219,7 +219,7 @@ - Extra depth of tool immersion. + Extra depth of tool immersion mm diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpDrillingEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpDrillingEdit.ui index 22dec12f54..d8920da0f7 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpDrillingEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpDrillingEdit.ui @@ -39,31 +39,31 @@ - The tool and its settings to be used for this operation. + The tool and its settings to be used for this operation - Coolant Mode + Coolant mode - The tool and its settings to be used for this operation. + The tool and its settings to be used for this operation - Don't retract after every hole + Do not retract after every hole - Keep Tool Down + Keep tool down @@ -92,7 +92,7 @@ - Extend Depth + Extend depth @@ -112,12 +112,12 @@ - Drill Tip + Drill tip - 2x Drill Tip + 2x drill tip @@ -166,7 +166,7 @@ - Chip Break + Chip break diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpEngraveEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpEngraveEdit.ui index dcfb06a67a..3296627d78 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpEngraveEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpEngraveEdit.ui @@ -26,28 +26,28 @@ - Tool Controller + Tool controller - The tool and its settings to be used for this operation. + The tool and its settings to be used for this operation - Coolant Mode + Coolant mode - The tool and its settings to be used for this operation. + The tool and its settings to be used for this operation @@ -60,14 +60,14 @@ - Start at Vertex + Start at vertex - Specify the vertex number of the underlying shape string at which engraving should start. + Specify the vertex number of the underlying shape string at which engraving should start 999999 diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpHelixEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpHelixEdit.ui index cf07cebfe7..02d656535a 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpHelixEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpHelixEdit.ui @@ -33,7 +33,7 @@ - The tool and its settings to be used for this operation. + The tool and its settings to be used for this operation @@ -47,7 +47,7 @@ - The tool and its settings to be used for this operation. + The tool and its settings to be used for this operation @@ -67,7 +67,7 @@ - Specify if the helix operation should start at the inside and work its way outwards, or start at the outside and work its way to the center. + Specify if the helix operation should start at the inside and work its way outwards, or start at the outside and work its way to the center @@ -91,7 +91,7 @@ - The direction for the helix, clockwise or counterclockwise. + The direction for the helix, clockwise or counterclockwise @@ -134,7 +134,7 @@ - Extra Offset + Extra offset diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpPocketExtEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpPocketExtEdit.ui index 74b8d2a40f..ebfdb721b7 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpPocketExtEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpPocketExtEdit.ui @@ -19,7 +19,7 @@ - Enable Extensions + Enable extensions true @@ -65,7 +65,7 @@ Extend the corner between two edges of a pocket. Selected adjacent edges are combined. - Extend Corners + Extend corners true @@ -75,14 +75,14 @@ - Default Length + Default length - Set the extent of the dimension -the default value is half the tool diameter + Set the extent of the dimension. The default value is half the tool diameter. -999999999.000000000000000 diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpPocketFullEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpPocketFullEdit.ui index 8d81b94766..ecff4f3a4c 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpPocketFullEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpPocketFullEdit.ui @@ -26,7 +26,7 @@ - Tool Controller + Tool controller @@ -69,7 +69,7 @@ Specify if the facing should be restricted by the actual shape of the selected face (or the part if no face is selected), or if the bounding box should be faced off. -The latter can be used to face of the entire stock area to ensure uniform heights for the following operations +The latter can be used to face of the entire stock area to ensure uniform heights for the following operations. @@ -175,7 +175,7 @@ The latter can be used to face of the entire stock area to ensure uniform height - Step Over Percent + Step over percent @@ -201,7 +201,7 @@ The latter can be used to face of the entire stock area to ensure uniform height - Material Allowance + Material allowance @@ -224,7 +224,7 @@ The latter can be used to face of the entire stock area to ensure uniform height Specify if this operation uses a starting point - Use Start Point + Use start point @@ -234,21 +234,21 @@ The latter can be used to face of the entire stock area to ensure uniform height If selected the operation uses the outline of the selected base geometry and ignores all holes and islands - Use Outline + Use outline - Clear Edges + Clear edges - Min Travel + Min travel @@ -258,7 +258,7 @@ The latter can be used to face of the entire stock area to ensure uniform height Check to skip machining regions that have already been cleared by previous operations - Use Rest Machining + Use rest machining diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpProbeEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpProbeEdit.ui index d6cf77f997..d3dc72f8e9 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpProbeEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpProbeEdit.ui @@ -32,7 +32,7 @@ - Tool Controller + Tool controller @@ -49,7 +49,7 @@ - Probe Grid Points + Probe grid points @@ -98,7 +98,7 @@ - X Offset + X offset @@ -112,7 +112,7 @@ - Y Offset + Y offset @@ -135,7 +135,7 @@ - File Name + File name @@ -152,7 +152,7 @@ - ... + diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpProfileFullEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpProfileFullEdit.ui index 8c539a4a51..6b215e43c1 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpProfileFullEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpProfileFullEdit.ui @@ -26,7 +26,7 @@ - Tool Controller + Tool controller @@ -40,7 +40,7 @@ - Coolant Mode + Coolant mode @@ -60,14 +60,14 @@ - Cut Side + Cut side - Specify if the profile should be performed inside or outside the base geometry features. This only matters if Use Compensation is checked (the default) + Specify if the profile should be performed inside or outside the base geometry features. This only matters if 'Use compensation' is checked (the default). @@ -98,7 +98,7 @@ - Extra Offset + Extra offset @@ -118,7 +118,7 @@ - Number of Passes + Number of passes @@ -128,14 +128,14 @@ 1 - The number of passes to do. If more than one, requires a non-zero value for Pass Stepover. + The number of passes to do. If more than one, requires a non-zero value for 'Pass stepover'. - Pass Stepover + Pass stepover @@ -148,7 +148,7 @@ - If doing multiple passes, the extra offset of each additional pass. + If doing multiple passes, the extra offset of each additional pass @@ -174,14 +174,14 @@ Check if this profile operation should also process holes in the base geometry. Found holes are automatically offset on the opposite cut side and performed in the opposite direction as perimeters. Note that this does not include cylindrical holes, the assumption being that they will get drilled - Process Holes + Process holes - If checked, the profile operation is offset by the tool radius. The offset direction is determined by the Cut Side + If checked, the profile operation is offset by the tool radius. The offset direction is determined by 'Cut side'. Use Compensation @@ -191,10 +191,10 @@ - Check if you want this profile operation to also be applied to cylindrical holes, which normally get drilled. This can be useful if no drill of adequate size is available or the number of holes don't warrant a tool change. Note that the cut side and direction is reversed in respect to the specified values + Check if you want this profile operation to also be applied to cylindrical holes, which normally get drilled. This can be useful if no drill of adequate size is available or the number of holes don't warrant a tool change. Note that the cut side and direction is reversed in respect to the specified values. - Process Circles + Process circles diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpSlotEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpSlotEdit.ui index 0631eb9f9b..85f7cd7aa8 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpSlotEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpSlotEdit.ui @@ -32,14 +32,14 @@ - Tool Controller + Tool controller - The tool and its settings to be used for this operation + The tool and its settings to be used for this operation @@ -49,7 +49,7 @@ - Coolant Mode + Coolant mode @@ -68,7 +68,7 @@ - Start Feature Reference + Start feature reference Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -94,32 +94,32 @@ - Center of Mass + Center of mass - Center of Bounding Box + Center of bounding box - Lowest Point + Lowest point - Highest Point + Highest point - Long Edge + Long edge - Short Edge + Short edge @@ -166,22 +166,22 @@ - Center of Mass + Center of mass - Center of Bounding Box + Center of bounding box - Lowest Point + Lowest point - Highest Point + Highest point @@ -219,13 +219,13 @@ - No Base Geometry selected + No base geometry Selected color:blue - No Base Geometry selected. + No base geometry selected Qt::AlignCenter @@ -238,10 +238,10 @@ - Currently using custom point inputs in the Property View of the Data tab + Currently using custom point inputs in the property view of the data tab - Currently using custom point inputs available in the Property View of the Data tab. + Currently using custom point inputs available in the property view of the data tab Qt::AlignCenter @@ -272,7 +272,7 @@ - Extend Path Start + Extend path start Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -342,7 +342,7 @@ - Layer Mode + Layer mode @@ -371,18 +371,18 @@ - Path Orientation + Path orientation - Choose the path orientation with regard to the feature(s) selected + Choose the path orientation with regard to the features selected - Start to End + Start to end diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpSurfaceEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpSurfaceEdit.ui index e69f98187e..9aea7bc7b4 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpSurfaceEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpSurfaceEdit.ui @@ -33,21 +33,21 @@ - The tool and its settings to be used for this operation. + The tool and its settings to be used for this operation - Coolant Mode + Coolant mode - The tool and its settings to be used for this operation. + The tool and its settings to be used for this operation @@ -60,84 +60,84 @@ - Bounding Box + Bounding box - Select the overall boundary for the operation. + Select the overall boundary for the operation - Scan Type + Scan type - Planar: Flat, 3D surface scan. Rotational: 4th-axis rotational scan. + Planar: flat, 3D surface scan. Rotational: 4th-axis rotational scan. - Layer Mode + Layer mode - Complete the operation in a single pass at depth, or multiple passes to final depth. + Complete the operation in a single pass at depth, or multiple passes to final depth - Cut Pattern + Cut pattern - Set the geometric clearing pattern to use for the operation. + Set the geometric clearing pattern to use for the operation - Profile Edges + Profile edges - Profile the edges of the selection. + Profile the edges of the selection - Avoid Last X Faces + Avoid last X faces - Avoid cutting the last 'N' faces in the Base Geometry list of selected faces. + Avoid cutting the last 'n' faces in the base geometry list of selected faces @@ -159,7 +159,7 @@ - Additional offset to the selected bounding box along the X axis. + Additional offset to the selected bounding box along the X axis mm @@ -169,7 +169,7 @@ - Additional offset to the selected bounding box along the Y axis. + Additional offset to the selected bounding box along the Y axis mm @@ -181,7 +181,7 @@ - Drop Cutter Direction + Drop cutter direction @@ -202,7 +202,7 @@ - Set the Z-axis depth offset from the target surface. + Set the Z-axis depth offset from the target surface mm @@ -212,7 +212,7 @@ - Step over + Stepover @@ -251,10 +251,10 @@ A step over of 100% results in no overlap between two different cycles. - Make True, if specifying a Start Point + Set to true if specifying a start point - Use Start Point + Use start point @@ -264,17 +264,17 @@ A step over of 100% results in no overlap between two different cycles. Enable optimization of linear paths (co-linear points). Removes unnecessary co-linear points from G-code output. - Optimize Linear Paths + Optimize linear paths - If true, the cutter will remain inside the boundaries of the model or selected face(s) + If true, the cutter will remain inside the boundaries of the model or selected faces - Boundary Enforcement + Boundary enforcement true @@ -287,7 +287,7 @@ A step over of 100% results in no overlap between two different cycles. Enable separate optimization of transitions between, and breaks within, each step over path. - Optimize StepOver Transitions + Optimize stepover transitions diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpTappingEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpTappingEdit.ui index dadc2288d4..242221bf33 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpTappingEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpTappingEdit.ui @@ -42,12 +42,12 @@ - Tap Tip + Tap tip - 2x Tap Tip + 2x tap tip @@ -62,7 +62,7 @@ - Extend Depth + Extend depth @@ -93,7 +93,7 @@ - Coolant Mode + Coolant mode diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpThreadMillingEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpThreadMillingEdit.ui index 82166b695f..71f59ac8c0 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpThreadMillingEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpThreadMillingEdit.ui @@ -82,7 +82,7 @@ - Major Diameter + Major diameter @@ -96,7 +96,7 @@ - Minor Diameter + Minor diameter @@ -174,7 +174,7 @@ - Lead In/Out + Lead in/out diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpVcarveEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpVcarveEdit.ui index ff9b43d24b..3115241023 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpVcarveEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpVcarveEdit.ui @@ -94,14 +94,14 @@ - Filter Colinear lines + Filter colinear lines - Sets how aggressively colinear segments are filtered from the Voronoi diagram. Valid values are 0 - 90 degrees (larger numbers filter more). Default = 10 + Sets how aggressively colinear segments are filtered from the voronoi diagram. Valid values are 0 - 90 degrees (larger numbers filter more). Default = 10 90 @@ -150,7 +150,7 @@ - Optimize path to avoid raising endmill when moving to adjacent edges. May result in sub-millimeter inaccuracies. + Optimize path to avoid raising endmill when moving to adjacent edges. May result in sub-millimeter inaccuracies. Optimize movements diff --git a/src/Mod/CAM/Gui/Resources/panels/PageOpWaterlineEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PageOpWaterlineEdit.ui index 889a0698e2..1e7b8c6cf4 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PageOpWaterlineEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PageOpWaterlineEdit.ui @@ -26,14 +26,14 @@ - Tool Controller + Tool controller - The tool and its settings to be used for this operation. + The tool and its settings to be used for this operation @@ -43,7 +43,7 @@ - Coolant Mode + Coolant mode @@ -63,7 +63,7 @@ - Select the algorithm to use: OCL Dropcutter*, or Experimental (Not OCL based). + Select the algorithm to use: 'OCL Dropcutter*', or 'Experimental' (not OCL based). @@ -76,7 +76,7 @@ - Bounding Box + Bounding box @@ -88,14 +88,14 @@ - Select the overall boundary for the operation. + Select the overall boundary for the operation - Layer Mode + Layer mode @@ -107,14 +107,14 @@ - Complete the operation in a single pass at depth, or multiple passes to final depth. + Complete the operation in a single pass at depth, or multiple passes to final depth - Cut Pattern + Cut pattern @@ -126,7 +126,7 @@ - Set the geometric clearing pattern to use for the operation. + Set the geometric clearing pattern to use for the operation @@ -139,14 +139,14 @@ - Boundary Adjustment + Boundary adjustment - Set the Z-axis depth offset from the target surface. + Set the Z-axis depth offset from the target surface mm @@ -204,7 +204,7 @@ A step over of 100% results in no overlap between two different cycles. Enable optimization of linear paths (co-linear points). Removes unnecessary co-linear points from G-code output. - Optimize Linear Paths + Optimize linear paths diff --git a/src/Mod/CAM/Gui/Resources/panels/PathEdit.ui b/src/Mod/CAM/Gui/Resources/panels/PathEdit.ui index 5409d84059..fbb2d4c7e3 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PathEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PathEdit.ui @@ -115,7 +115,7 @@ - Template Export + Template export @@ -131,7 +131,7 @@ - Output File + Output file @@ -169,7 +169,7 @@ See the file save policy below on how to deal with name conflicts. - ... + @@ -193,7 +193,7 @@ See the file save policy below on how to deal with name conflicts. - Optional arguments passed to the Post Processor. The arguments are specific for each Post Processor, please see its documentation for details. + Optional arguments passed to the post processor. The arguments are specific for each post processor, please see its documentation for details. @@ -232,7 +232,7 @@ Ordering by operation will do each operation in all coordinate systems before mo - Order By + Order by @@ -394,7 +394,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 G-code 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. + If multiple coordinate systems are in use, setting this to TRUE will cause the G-code 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. @@ -475,22 +475,22 @@ If <span style=" font-style:italic;">order by</span> is se - Create Box + Create box - Create Cylinder + Create cylinder - Extend Model's Bounding Box + Extend model's bounding box - Use Existing Solid + Use existing solid @@ -511,7 +511,7 @@ If <span style=" font-style:italic;">order by</span> is se - Assign Stock Material + Assign stock material @@ -754,7 +754,7 @@ If <span style=" font-style:italic;">order by</span> is se - Link Stock and Model + Link stock and model @@ -1038,7 +1038,7 @@ If <span style=" font-style:italic;">order by</span> is se - Default Values + Default values @@ -1050,7 +1050,7 @@ If <span style=" font-style:italic;">order by</span> is se - Start Depth + Start depth @@ -1066,7 +1066,7 @@ Default: OpStartDepth - Final Depth + Final depth @@ -1082,7 +1082,7 @@ Default: OpFinalDepth - Step Down + Step down @@ -1186,7 +1186,7 @@ Default: "5mm" - Coolant Mode + Coolant mode @@ -1267,7 +1267,7 @@ Default: "5mm" Feed - Horizontal Feed + Horizontal feed @@ -1279,7 +1279,7 @@ Default: "5mm" Feed - Vertical Feed + Vertical feed @@ -1367,7 +1367,7 @@ Default: "5mm" - Rapid horizontal speed assigned as HorizRapid to new ToolController. + Rapid horizontal speed assigned as HorizRapid to new ToolController @@ -1387,7 +1387,7 @@ Default: "5mm" - Rapid vertical speed assigned to VertRapid of new ToolController. + Rapid vertical speed assigned to VertRapid of new ToolController diff --git a/src/Mod/CAM/Gui/Resources/panels/PropertyBag.ui b/src/Mod/CAM/Gui/Resources/panels/PropertyBag.ui index a4cd0d9d0e..530792dd39 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PropertyBag.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PropertyBag.ui @@ -52,14 +52,14 @@ - Modify... + Modify - Add... + Add diff --git a/src/Mod/CAM/Gui/Resources/panels/PropertyCreate.ui b/src/Mod/CAM/Gui/Resources/panels/PropertyCreate.ui index e0570a952e..ebc09d12f7 100644 --- a/src/Mod/CAM/Gui/Resources/panels/PropertyCreate.ui +++ b/src/Mod/CAM/Gui/Resources/panels/PropertyCreate.ui @@ -24,14 +24,14 @@ - Name of property. Can only contain letters, numbers, and underscores. MixedCase names will display with spaces "Mixed Case" + Name of the property. Can only contain letters, numbers, and underscores. MixedCase names will display with spaces "Mixed Case" - The category group the property belongs to. + The category group the property belongs to true @@ -48,7 +48,7 @@ - The type of the property value. + The type of the property value @@ -69,7 +69,7 @@ - ToolTip to be displayed when user hovers mouse over property. + ToolTip to be displayed when user hovers mouse over property true @@ -114,7 +114,7 @@ - Check if you want to create several properties in a batch. + Check to create several properties in a batch Create another diff --git a/src/Mod/CAM/Gui/Resources/panels/SetupGlobal.ui b/src/Mod/CAM/Gui/Resources/panels/SetupGlobal.ui index e9798ce0c3..996bc99020 100644 --- a/src/Mod/CAM/Gui/Resources/panels/SetupGlobal.ui +++ b/src/Mod/CAM/Gui/Resources/panels/SetupGlobal.ui @@ -33,7 +33,7 @@ - Start Depth + Start depth @@ -49,7 +49,7 @@ Default: OpStartDepth - Final Depth + Final depth @@ -65,7 +65,7 @@ Default: OpFinalDepth - Step Down + Step down @@ -202,7 +202,7 @@ Default: "5mm" - Rapid horizontal speed assigned as HorizRapid to new ToolController. + Rapid horizontal speed assigned as HorizRapid to new ToolController @@ -258,7 +258,7 @@ Default: "5mm" - Coolant Mode + Coolant mode diff --git a/src/Mod/CAM/Gui/Resources/panels/ShapeSelector.ui b/src/Mod/CAM/Gui/Resources/panels/ShapeSelector.ui index 395f051c3f..da9f2dbc17 100644 --- a/src/Mod/CAM/Gui/Resources/panels/ShapeSelector.ui +++ b/src/Mod/CAM/Gui/Resources/panels/ShapeSelector.ui @@ -11,7 +11,7 @@ - Select a Tool Shape + Tool Shape Selection @@ -31,7 +31,7 @@ - Standard Tools + Standard tools @@ -44,7 +44,7 @@ - My Tools + My tools diff --git a/src/Mod/CAM/Gui/Resources/panels/SurfaceEdit.ui b/src/Mod/CAM/Gui/Resources/panels/SurfaceEdit.ui index eafef0471a..7bb41cbd01 100644 --- a/src/Mod/CAM/Gui/Resources/panels/SurfaceEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/SurfaceEdit.ui @@ -42,13 +42,13 @@ :/icons/CAM_BaseGeometry.svg:/icons/CAM_BaseGeometry.svg - Base Geometry + Base geometry - Drag to reorder, then update. + Drag to reorder, then update QAbstractItemView::DragDrop @@ -64,17 +64,17 @@ - Add item selected in window. + Add item selected in window - add + Add - Remove Item selected in list, then update. + Remove item selected in list, then update Remove @@ -84,7 +84,7 @@ - Update the path with the removed and reordered items. + Update the path with the removed and reordered items Update @@ -133,7 +133,7 @@ - Start Depth + Start depth @@ -147,7 +147,7 @@ - Final Depth + Final depth @@ -161,7 +161,7 @@ - Step Down + Step down @@ -175,7 +175,7 @@ - Finish Step Down + Finish step down @@ -211,7 +211,7 @@ - Safe Height + Safe height @@ -225,7 +225,7 @@ - Clearance Height + Clearance height @@ -260,7 +260,7 @@ - Tool Controller + Tool controller @@ -270,7 +270,7 @@ - Coolant Mode + Coolant mode @@ -304,12 +304,12 @@ - OCL Dropcutter + OCL dropcutter - OCL Waterline + OCL waterline diff --git a/src/Mod/CAM/Gui/Resources/panels/TaskCAMSimulator.ui b/src/Mod/CAM/Gui/Resources/panels/TaskCAMSimulator.ui index fff0c1b518..0deaf2a36b 100644 --- a/src/Mod/CAM/Gui/Resources/panels/TaskCAMSimulator.ui +++ b/src/Mod/CAM/Gui/Resources/panels/TaskCAMSimulator.ui @@ -28,7 +28,7 @@ - Accuracy: + Accuracy @@ -83,7 +83,7 @@ - Job: + Job @@ -100,7 +100,7 @@ - Activate / resume simulation + Activate/resume simulation Play diff --git a/src/Mod/CAM/Gui/Resources/panels/TaskPathCamoticsSim.ui b/src/Mod/CAM/Gui/Resources/panels/TaskPathCamoticsSim.ui index 1f481d3de6..075ff5ca7a 100644 --- a/src/Mod/CAM/Gui/Resources/panels/TaskPathCamoticsSim.ui +++ b/src/Mod/CAM/Gui/Resources/panels/TaskPathCamoticsSim.ui @@ -72,7 +72,7 @@ - Make CAMotics File + New CAMotics File diff --git a/src/Mod/CAM/Gui/Resources/panels/TaskPathSimulator.ui b/src/Mod/CAM/Gui/Resources/panels/TaskPathSimulator.ui index 040e814c1d..6a3392b544 100644 --- a/src/Mod/CAM/Gui/Resources/panels/TaskPathSimulator.ui +++ b/src/Mod/CAM/Gui/Resources/panels/TaskPathSimulator.ui @@ -52,7 +52,7 @@ - Activate / resume simulation + Activate/resume simulation Play @@ -112,7 +112,7 @@ - Run simulation till end without animation + Run the simulation until it ends without an animation Fast Forward @@ -177,7 +177,7 @@ - Speed: + Speed @@ -226,7 +226,7 @@ - Accuracy: + Accuracy @@ -275,7 +275,7 @@ - Job: + Job diff --git a/src/Mod/CAM/Gui/Resources/panels/ToolBitEditor.ui b/src/Mod/CAM/Gui/Resources/panels/ToolBitEditor.ui index 8153ae64fe..eff7e73369 100644 --- a/src/Mod/CAM/Gui/Resources/panels/ToolBitEditor.ui +++ b/src/Mod/CAM/Gui/Resources/panels/ToolBitEditor.ui @@ -104,7 +104,7 @@ - Coating: + Coating @@ -114,7 +114,7 @@ - Hardness: + Hardness @@ -124,7 +124,7 @@ - Materials: + Materials @@ -137,7 +137,7 @@ - Supplier: + Supplier diff --git a/src/Mod/CAM/Gui/Resources/panels/ToolBitLibraryEdit.ui b/src/Mod/CAM/Gui/Resources/panels/ToolBitLibraryEdit.ui index 6b8ecbb8d7..5fe79475eb 100644 --- a/src/Mod/CAM/Gui/Resources/panels/ToolBitLibraryEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/ToolBitLibraryEdit.ui @@ -49,7 +49,7 @@ - Add existing Tool Bit to this library. + Adds the existing tool bit to the library Add Existing @@ -69,7 +69,7 @@ - Delete selected Tool Bit(s) from the library. + Deletes the selected tool bits from the library Remove @@ -96,7 +96,7 @@ - Add New Tool Table + Add new tool table @@ -143,7 +143,7 @@ - Save the current Library + Save the current library @@ -194,7 +194,7 @@ true - Table of Tool Bits of the library. + Table of tool bits of the library QFrame::Box diff --git a/src/Mod/CAM/Gui/Resources/panels/ToolEditor.ui b/src/Mod/CAM/Gui/Resources/panels/ToolEditor.ui index 03ff55b27b..ccce8253d0 100644 --- a/src/Mod/CAM/Gui/Resources/panels/ToolEditor.ui +++ b/src/Mod/CAM/Gui/Resources/panels/ToolEditor.ui @@ -64,7 +64,7 @@ - Length Offset + Length offset @@ -100,28 +100,28 @@ - Flat Radius + Flat radius - Corner Radius + Corner radius - Point/Tip Angle + Point/tip angle - Cutting Edge Height + Cutting edge height diff --git a/src/Mod/CAM/Gui/Resources/panels/ZCorrectEdit.ui b/src/Mod/CAM/Gui/Resources/panels/ZCorrectEdit.ui index ee9b5b874f..b2547b520e 100644 --- a/src/Mod/CAM/Gui/Resources/panels/ZCorrectEdit.ui +++ b/src/Mod/CAM/Gui/Resources/panels/ZCorrectEdit.ui @@ -61,7 +61,7 @@ - ... + diff --git a/src/Mod/CAM/Gui/Resources/preferences/Advanced.ui b/src/Mod/CAM/Gui/Resources/preferences/Advanced.ui index b8cb82864e..d954958d02 100644 --- a/src/Mod/CAM/Gui/Resources/preferences/Advanced.ui +++ b/src/Mod/CAM/Gui/Resources/preferences/Advanced.ui @@ -61,7 +61,7 @@ - Suppress warning whenever a Path selection mode is activated + Suppress warning whenever a path selection mode is activated Suppress feed rate warning @@ -80,7 +80,7 @@ - Suppress warning whenever a Path selection mode is activated + Suppress warning whenever a path selection mode is activated Suppress selection mode warning @@ -114,7 +114,7 @@ - If OpenCAMLib is installed with Python bindings it can be used by some additional 3D operations. NOTE: Enabling OpenCAMLib here requires a restart of FreeCAD to take effect. + If OpenCAMLib is installed with Python bindings, it can be used by some additional 3D operations. NOTE: Enabling OpenCAMLib here requires a restart of FreeCAD to take effect. true diff --git a/src/Mod/CAM/Gui/Resources/preferences/PathDressupHoldingTags.ui b/src/Mod/CAM/Gui/Resources/preferences/PathDressupHoldingTags.ui index a0d86c24eb..cc55b3f495 100644 --- a/src/Mod/CAM/Gui/Resources/preferences/PathDressupHoldingTags.ui +++ b/src/Mod/CAM/Gui/Resources/preferences/PathDressupHoldingTags.ui @@ -23,7 +23,7 @@ - Default Width + Default width @@ -39,7 +39,7 @@ If the width is set to 0 the dressup will try to guess a reasonable value based - Default Height + Default height @@ -55,14 +55,14 @@ If the specified height is 0 the dressup will use half the height of the part. S - Default Angle + Default angle - Plunge angle for ascent and descent of holding tag. + Plunge angle for ascent and descent of holding tag ° @@ -84,7 +84,7 @@ If the specified height is 0 the dressup will use half the height of the part. S - Default Radius + Default radius @@ -109,14 +109,14 @@ If the radius is bigger than that which the tag shape itself supports, the resul - Initial # Tags + Initial # tags - Specify the number of tags generated when a new dressup is created. + Specify the number of tags generated when a new dressup is created 2 diff --git a/src/Mod/CAM/Gui/Resources/preferences/PathJob.ui b/src/Mod/CAM/Gui/Resources/preferences/PathJob.ui index 9969a7d9db..30472ceabe 100644 --- a/src/Mod/CAM/Gui/Resources/preferences/PathJob.ui +++ b/src/Mod/CAM/Gui/Resources/preferences/PathJob.ui @@ -57,7 +57,7 @@ If left empty the macro directory is used. - ... + @@ -71,7 +71,7 @@ If left empty the macro directory is used. - The default template to be selected when creating a new Job. + The default template to be selected when creating a new job. This can be helpful when almost all jobs will be processed by the same machine with a similar setup. @@ -82,7 +82,7 @@ If left empty no template will be preselected. - ... + @@ -100,21 +100,21 @@ If left empty no template will be preselected. - Default Geometry Tolerance + Default geometry tolerance - Default value for new Jobs, used for computing Paths. Smaller increases accuracy, but slows down computation + Default value for new jobs, used for computing Paths. Smaller increases accuracy, but slows down computation - Default Curve Accuracy + Default curve accuracy @@ -151,7 +151,7 @@ If left empty no template will be preselected. - Post Processor + Post processor @@ -174,7 +174,7 @@ If left empty no template will be preselected. - Default Path + Default path @@ -216,7 +216,7 @@ See the file save policy below on how to deal with name conflicts. - ... + @@ -227,7 +227,7 @@ See the file save policy below on how to deal with name conflicts. - File Save Policy + File save policy @@ -248,12 +248,12 @@ See the file save policy below on how to deal with name conflicts. - Open File Dialog + Open file dialog - Open File Dialog on conflict + Open file dialog on conflict @@ -285,7 +285,7 @@ See the file save policy below on how to deal with name conflicts. - Post Processors Selection + Post processors selection @@ -302,14 +302,14 @@ See the file save policy below on how to deal with name conflicts. - Default Post Processor + Default post processor - Select one of the post processors as the default. + Select one of the post processors as the default DefaultPostProcessor @@ -322,14 +322,14 @@ See the file save policy below on how to deal with name conflicts. - Default Arguments + Default arguments - Optional arguments passed to the default Post Processor specified above. See the Post Processor's documentation for supported arguments. + Optional arguments passed to the default post processor specified above. See the post processor's documentation for supported arguments. DefaultPostProcessorArgs @@ -392,17 +392,17 @@ See the file save policy below on how to deal with name conflicts. - Create Box + Create box - Create Cylinder + Create cylinder - Extend Model's Bounding Box + Extend model's bounding box @@ -650,7 +650,7 @@ See the file save policy below on how to deal with name conflicts. - References to Tool Bits and their shapes can either be stored with an absolute path or with a relative path to the search path. + References to tool bits and their shapes can either be stored with an absolute path or with a relative path to the search path. Generally it is recommended to use relative paths due to their flexibility and robustness to layout changes. Should multiple tools or tool shapes with the same name exist in different directories it can be required to use absolute paths. diff --git a/src/Mod/CAM/Gui/TaskDlgPathCompound.ui b/src/Mod/CAM/Gui/TaskDlgPathCompound.ui index fb738f7374..d2396d1304 100644 --- a/src/Mod/CAM/Gui/TaskDlgPathCompound.ui +++ b/src/Mod/CAM/Gui/TaskDlgPathCompound.ui @@ -11,7 +11,7 @@ - Paths list + Paths List diff --git a/src/Mod/CAM/Path/Base/Gui/PropertyBag.py b/src/Mod/CAM/Path/Base/Gui/PropertyBag.py index 77ac9a033c..f6bd417eae 100644 --- a/src/Mod/CAM/Path/Base/Gui/PropertyBag.py +++ b/src/Mod/CAM/Path/Base/Gui/PropertyBag.py @@ -414,10 +414,10 @@ class PropertyBagCreateCommand(object): def GetResources(self): return { - "MenuText": translate("CAM_PropertyBag", "PropertyBag"), + "MenuText": translate("CAM_PropertyBag", "Property Bag"), "ToolTip": translate( "CAM_PropertyBag", - "Creates an object which can be used to store reference properties.", + "Creates an object which can be used to store reference properties", ), } @@ -443,4 +443,4 @@ class PropertyBagCreateCommand(object): if FreeCAD.GuiUp: FreeCADGui.addCommand("CAM_PropertyBag", PropertyBagCreateCommand()) -FreeCAD.Console.PrintLog("Loading PathPropertyBagGui ... done\n") +FreeCAD.Console.PrintLog("Loading PathPropertyBagGui… done\n") diff --git a/src/Mod/CAM/Path/Dressup/Gui/Array.py b/src/Mod/CAM/Path/Dressup/Gui/Array.py index 98fb4f3b87..8b0220de40 100644 --- a/src/Mod/CAM/Path/Dressup/Gui/Array.py +++ b/src/Mod/CAM/Path/Dressup/Gui/Array.py @@ -72,9 +72,7 @@ class CommandPathDressupArray: # check that the selection contains exactly what we want selection = FreeCADGui.Selection.getSelection() if len(selection) != 1: - Path.Log.error( - translate("CAM_DressupArray", "Please select one toolpath object") + "\n" - ) + Path.Log.error(translate("CAM_DressupArray", "Select one toolpath object") + "\n") return baseObject = selection[0] diff --git a/src/Mod/CAM/Path/Dressup/Gui/AxisMap.py b/src/Mod/CAM/Path/Dressup/Gui/AxisMap.py index 7757d4f0e4..05a747824d 100644 --- a/src/Mod/CAM/Path/Dressup/Gui/AxisMap.py +++ b/src/Mod/CAM/Path/Dressup/Gui/AxisMap.py @@ -252,7 +252,7 @@ class CommandPathDressup: "Pixmap": "CAM_Dressup", "MenuText": QT_TRANSLATE_NOOP("CAM_DressupAxisMap", "Axis Map"), "Accel": "", - "ToolTip": QT_TRANSLATE_NOOP("CAM_DressupAxisMap", "Remap one axis to another."), + "ToolTip": QT_TRANSLATE_NOOP("CAM_DressupAxisMap", "Remaps one axis to another"), } def IsActive(self): @@ -267,9 +267,7 @@ class CommandPathDressup: # check that the selection contains exactly what we want selection = FreeCADGui.Selection.getSelection() if len(selection) != 1: - FreeCAD.Console.PrintError( - translate("CAM_Dressup", "Please select one toolpath object\n") - ) + FreeCAD.Console.PrintError(translate("CAM_Dressup", "Select one toolpath object\n")) return if not selection[0].isDerivedFrom("Path::Feature"): FreeCAD.Console.PrintError( @@ -277,7 +275,7 @@ class CommandPathDressup: ) return if selection[0].isDerivedFrom("Path::FeatureCompoundPython"): - FreeCAD.Console.PrintError(translate("CAM_Dressup", "Please select a toolpath object")) + FreeCAD.Console.PrintError(translate("CAM_Dressup", "Select a toolpath object")) return # everything ok! @@ -306,4 +304,4 @@ if FreeCAD.GuiUp: # register the FreeCAD command FreeCADGui.addCommand("CAM_DressupAxisMap", CommandPathDressup()) -FreeCAD.Console.PrintLog("Loading PathDressup... done\n") +FreeCAD.Console.PrintLog("Loading PathDressup… done\n") diff --git a/src/Mod/CAM/Path/Dressup/Gui/Boundary.py b/src/Mod/CAM/Path/Dressup/Gui/Boundary.py index dc2eac675d..e878f8fbd7 100644 --- a/src/Mod/CAM/Path/Dressup/Gui/Boundary.py +++ b/src/Mod/CAM/Path/Dressup/Gui/Boundary.py @@ -259,7 +259,7 @@ class CommandPathDressupPathBoundary: "MenuText": QT_TRANSLATE_NOOP("CAM_DressupPathBoundary", "Boundary"), "ToolTip": QT_TRANSLATE_NOOP( "CAM_DressupPathBoundary", - "Creates a Boundary Dress-up from a selected toolpath", + "Creates a boundary dress-up from a selected toolpath", ), } diff --git a/src/Mod/CAM/Path/Dressup/Gui/Dogbone.py b/src/Mod/CAM/Path/Dressup/Gui/Dogbone.py index a6a08ad604..44d056cda0 100644 --- a/src/Mod/CAM/Path/Dressup/Gui/Dogbone.py +++ b/src/Mod/CAM/Path/Dressup/Gui/Dogbone.py @@ -434,7 +434,7 @@ class ObjectDressup(object): "App::PropertyIntegerList", "BoneBlacklist", "Dressup", - QT_TRANSLATE_NOOP("App::Property", "Bones that aren't dressed up"), + QT_TRANSLATE_NOOP("App::Property", "Bones that are not dressed up"), ) obj.BoneBlacklist = [] obj.setEditorMode("BoneBlacklist", 2) # hide this one @@ -1322,7 +1322,7 @@ class CommandDressupDogbone(object): "MenuText": QT_TRANSLATE_NOOP("CAM_DressupDogbone", "Dogbone"), "ToolTip": QT_TRANSLATE_NOOP( "CAM_DressupDogbone", - "Creates a Dogbone Dress-up object from a selected toolpath", + "Creates a dogbone dress-up object from a selected toolpath", ), } @@ -1339,7 +1339,7 @@ class CommandDressupDogbone(object): selection = FreeCADGui.Selection.getSelection() if len(selection) != 1: FreeCAD.Console.PrintError( - translate("CAM_DressupDogbone", "Please select one toolpath object") + "\n" + translate("CAM_DressupDogbone", "Select one toolpath object") + "\n" ) return baseObject = selection[0] @@ -1367,4 +1367,4 @@ class CommandDressupDogbone(object): # # FreeCADGui.addCommand("CAM_DressupDogbone", CommandDressupDogbone()) -FreeCAD.Console.PrintLog("Loading DressupDogbone... done\n") +FreeCAD.Console.PrintLog("Loading DressupDogbone… done\n") diff --git a/src/Mod/CAM/Path/Dressup/Gui/DogboneII.py b/src/Mod/CAM/Path/Dressup/Gui/DogboneII.py index 0f89835e68..2402ee1988 100644 --- a/src/Mod/CAM/Path/Dressup/Gui/DogboneII.py +++ b/src/Mod/CAM/Path/Dressup/Gui/DogboneII.py @@ -303,7 +303,7 @@ class ViewProviderDressup(object): def Create(base, name="DressupDogbone"): """ - Create(obj, name='DressupDogbone') ... dresses the given Path.Op.Profile object with dogbones. + Create(obj, name='DressupDogbone')… dresses the given Path.Op.Profile object with dogbones. """ obj = DogboneII.Create(base, name) job = PathUtils.findParentJob(base) @@ -323,7 +323,7 @@ class CommandDressupDogboneII(object): "MenuText": QT_TRANSLATE_NOOP("CAM_DressupDogbone", "Dogbone"), "ToolTip": QT_TRANSLATE_NOOP( "CAM_DressupDogbone", - "Creates a Dogbone Dress-up object from a selected toolpath", + "Creates a dogbone dress-up object from a selected toolpath", ), } @@ -340,7 +340,7 @@ class CommandDressupDogboneII(object): selection = FreeCADGui.Selection.getSelection() if len(selection) != 1: FreeCAD.Console.PrintError( - translate("CAM_DressupDogbone", "Please select one toolpath object") + "\n" + translate("CAM_DressupDogbone", "Select one toolpath object") + "\n" ) return baseObject = selection[0] @@ -367,4 +367,4 @@ if FreeCAD.GuiUp: FreeCADGui.addCommand("CAM_DressupDogbone", CommandDressupDogboneII()) -FreeCAD.Console.PrintLog("Loading DressupDogboneII ... done\n") +FreeCAD.Console.PrintLog("Loading DressupDogboneII… done\n") diff --git a/src/Mod/CAM/Path/Dressup/Gui/Dragknife.py b/src/Mod/CAM/Path/Dressup/Gui/Dragknife.py index 69df6b2b85..cada0a52f3 100644 --- a/src/Mod/CAM/Path/Dressup/Gui/Dragknife.py +++ b/src/Mod/CAM/Path/Dressup/Gui/Dragknife.py @@ -576,7 +576,7 @@ class CommandDressupDragknife: def GetResources(self): return { "Pixmap": "CAM_Dressup", - "MenuText": QT_TRANSLATE_NOOP("CAM_DressupDragKnife", "DragKnife"), + "MenuText": QT_TRANSLATE_NOOP("CAM_DressupDragKnife", "Drag Knife"), "ToolTip": QT_TRANSLATE_NOOP( "CAM_DressupDragKnife", "Modifies a toolpath to add dragknife corner actions", @@ -596,7 +596,7 @@ class CommandDressupDragknife: selection = FreeCADGui.Selection.getSelection() if len(selection) != 1: FreeCAD.Console.PrintError( - translate("CAM_DressupDragKnife", "Please select one toolpath object") + "\n" + translate("CAM_DressupDragKnife", "Select one toolpath object") + "\n" ) return if not selection[0].isDerivedFrom("Path::Feature"): @@ -606,7 +606,7 @@ class CommandDressupDragknife: return if selection[0].isDerivedFrom("Path::FeatureCompoundPython"): FreeCAD.Console.PrintError( - translate("CAM_DressupDragKnife", "Please select a toolpath object") + translate("CAM_DressupDragKnife", "Select a toolpath object") ) return @@ -639,4 +639,4 @@ if FreeCAD.GuiUp: # register the FreeCAD command FreeCADGui.addCommand("CAM_DressupDragKnife", CommandDressupDragknife()) -FreeCAD.Console.PrintLog("Loading CAM_DressupDragKnife... done\n") +FreeCAD.Console.PrintLog("Loading CAM_DressupDragKnife… done\n") diff --git a/src/Mod/CAM/Path/Dressup/Gui/LeadInOut.py b/src/Mod/CAM/Path/Dressup/Gui/LeadInOut.py index 7137c232a7..34673e1548 100644 --- a/src/Mod/CAM/Path/Dressup/Gui/LeadInOut.py +++ b/src/Mod/CAM/Path/Dressup/Gui/LeadInOut.py @@ -76,45 +76,45 @@ class ObjectDressup: "App::PropertyBool", "KeepToolDown", "Path", - QT_TRANSLATE_NOOP("App::Property", "Keep the Tool Down in toolpath"), + QT_TRANSLATE_NOOP("App::Property", "Keep the tool down in toolpath"), ) obj.addProperty( "App::PropertyDistance", "LengthIn", "Path", - QT_TRANSLATE_NOOP("App::Property", "Length or Radius of the approach"), + QT_TRANSLATE_NOOP("App::Property", "Length or radius of the approach"), ) obj.addProperty( "App::PropertyDistance", "LengthOut", "Path", - QT_TRANSLATE_NOOP("App::Property", "Length or Radius of the exit"), + QT_TRANSLATE_NOOP("App::Property", "Length or radius of the exit"), ) obj.addProperty( "App::PropertyEnumeration", "StyleIn", "Path", - QT_TRANSLATE_NOOP("App::Property", "The Style of motion into the toolpath"), + QT_TRANSLATE_NOOP("App::Property", "The style of motion into the toolpath"), ) obj.StyleIn = lead_styles obj.addProperty( "App::PropertyEnumeration", "StyleOut", "Path", - QT_TRANSLATE_NOOP("App::Property", "The Style of motion out of the toolpath"), + QT_TRANSLATE_NOOP("App::Property", "The style of motion out of the toolpath"), ) obj.StyleOut = lead_styles obj.addProperty( "App::PropertyDistance", "ExtendLeadIn", "Path", - QT_TRANSLATE_NOOP("App::Property", "Extends LeadIn distance"), + QT_TRANSLATE_NOOP("App::Property", "Extends lead in distance"), ) obj.addProperty( "App::PropertyDistance", "ExtendLeadOut", "Path", - QT_TRANSLATE_NOOP("App::Property", "Extends LeadOut distance"), + QT_TRANSLATE_NOOP("App::Property", "Extends lead out distance"), ) obj.addProperty( "App::PropertyBool", @@ -126,7 +126,7 @@ class ObjectDressup: "App::PropertyBool", "IncludeLayers", "Path", - QT_TRANSLATE_NOOP("App::Property", "Apply LeadInOut to layers within an operation"), + QT_TRANSLATE_NOOP("App::Property", "Apply Lead in/out to layers within an operation"), ) obj.Proxy = self @@ -162,13 +162,13 @@ class ObjectDressup: if obj.LengthIn <= 0: Path.Log.error( - translate("CAM_DressupLeadInOut", "Length/Radius positive not Null") + "\n" + translate("CAM_DressupLeadInOut", "Length/radius positive not Null") + "\n" ) obj.LengthIn = 0.1 if obj.LengthOut <= 0: Path.Log.error( - translate("CAM_DressupLeadInOut", "Length/Radius positive not Null") + "\n" + translate("CAM_DressupLeadInOut", "Length/radius positive not Null") + "\n" ) obj.LengthOut = 0.1 @@ -176,7 +176,7 @@ class ObjectDressup: obj.Path = self.generateLeadInOutCurve(obj) def onDocumentRestored(self, obj): - """onDocumentRestored(obj) ... Called automatically when document is restored.""" + """onDocumentRestored(obj)… Called automatically when document is restored.""" lead_styles = [ QT_TRANSLATE_NOOP("CAM_DressupLeadInOut", "Arc"), QT_TRANSLATE_NOOP("CAM_DressupLeadInOut", "Tangent"), @@ -188,7 +188,7 @@ class ObjectDressup: "App::PropertyEnumeration", "StyleIn", "Path", - QT_TRANSLATE_NOOP("App::Property", "The Style of motion into the toolpath"), + QT_TRANSLATE_NOOP("App::Property", "The style of motion into the toolpath"), ) obj.StyleIn = lead_styles obj.StyleIn = obj.StyleOn @@ -199,7 +199,7 @@ class ObjectDressup: "App::PropertyEnumeration", "StyleOut", "Path", - QT_TRANSLATE_NOOP("App::Property", "The Style of motion out of the toolpath"), + QT_TRANSLATE_NOOP("App::Property", "The style of motion out of the toolpath"), ) obj.StyleOut = lead_styles obj.StyleOut = obj.StyleOff @@ -210,7 +210,7 @@ class ObjectDressup: "App::PropertyDistance", "LengthIn", "Path", - QT_TRANSLATE_NOOP("App::Property", "Length or Radius of the approach"), + QT_TRANSLATE_NOOP("App::Property", "Length or radius of the approach"), ) obj.LengthIn = obj.Length obj.removeProperty("Length") @@ -491,10 +491,10 @@ class CommandPathDressupLeadInOut: def GetResources(self): return { "Pixmap": "CAM_Dressup", - "MenuText": QT_TRANSLATE_NOOP("CAM_DressupLeadInOut", "LeadInOut"), + "MenuText": QT_TRANSLATE_NOOP("CAM_DressupLeadInOut", "Lead In/Out"), "ToolTip": QT_TRANSLATE_NOOP( "CAM_DressupLeadInOut", - "Creates a Cutter Radius Compensation G41/G42 Entry Dressup object from a selected path", + "Creates a cutter radius compensation G41/G42 entry dressup object from a selected path", ), } @@ -508,9 +508,7 @@ class CommandPathDressupLeadInOut: # check that the selection contains exactly what we want selection = FreeCADGui.Selection.getSelection() if len(selection) != 1: - Path.Log.error( - translate("CAM_DressupLeadInOut", "Please select one toolpath object") + "\n" - ) + Path.Log.error(translate("CAM_DressupLeadInOut", "Select one toolpath object") + "\n") return baseObject = selection[0] if not baseObject.isDerivedFrom("Path::Feature"): @@ -519,7 +517,7 @@ class CommandPathDressupLeadInOut: ) return if baseObject.isDerivedFrom("Path::FeatureCompoundPython"): - Path.Log.error(translate("CAM_DressupLeadInOut", "Please select a Profile object")) + Path.Log.error(translate("CAM_DressupLeadInOut", "Select a Profile object")) return # everything ok! @@ -547,4 +545,4 @@ if App.GuiUp: # register the FreeCAD command FreeCADGui.addCommand("CAM_DressupLeadInOut", CommandPathDressupLeadInOut()) -Path.Log.notice("Loading CAM_DressupLeadInOut... done\n") +Path.Log.notice("Loading CAM_DressupLeadInOut… done\n") diff --git a/src/Mod/CAM/Path/Dressup/Gui/RampEntry.py b/src/Mod/CAM/Path/Dressup/Gui/RampEntry.py index 26ebd52fe5..f96d68658a 100644 --- a/src/Mod/CAM/Path/Dressup/Gui/RampEntry.py +++ b/src/Mod/CAM/Path/Dressup/Gui/RampEntry.py @@ -60,7 +60,7 @@ class ObjectDressup: "App::PropertyAngle", "Angle", "Path", - QT_TRANSLATE_NOOP("App::Property", "Angle of ramp."), + QT_TRANSLATE_NOOP("App::Property", "Angle of ramp"), ) obj.addProperty( "App::PropertyEnumeration", @@ -861,10 +861,10 @@ class CommandPathDressupRampEntry: def GetResources(self): return { "Pixmap": "CAM_Dressup", - "MenuText": QT_TRANSLATE_NOOP("CAM_DressupRampEntry", "RampEntry"), + "MenuText": QT_TRANSLATE_NOOP("CAM_DressupRampEntry", "Ramp Entry"), "ToolTip": QT_TRANSLATE_NOOP( "CAM_DressupRampEntry", - "Creates a Ramp Entry Dress-up object from a selected toolpath", + "Creates a ramp entry dress-up object from a selected toolpath", ), } @@ -879,9 +879,7 @@ class CommandPathDressupRampEntry: # check that the selection contains exactly what we want selection = FreeCADGui.Selection.getSelection() if len(selection) != 1: - Path.Log.error( - translate("CAM_DressupRampEntry", "Please select one toolpath object") + "\n" - ) + Path.Log.error(translate("CAM_DressupRampEntry", "Select one toolpath object") + "\n") return baseObject = selection[0] if not baseObject.isDerivedFrom("Path::Feature"): @@ -890,7 +888,7 @@ class CommandPathDressupRampEntry: ) return if baseObject.isDerivedFrom("Path::FeatureCompoundPython"): - Path.Log.error(translate("CAM_DressupRampEntry", "Please select a Profile object")) + Path.Log.error(translate("CAM_DressupRampEntry", "Select a Profile object")) return # everything ok! @@ -918,4 +916,4 @@ if FreeCAD.GuiUp: # register the FreeCAD command FreeCADGui.addCommand("CAM_DressupRampEntry", CommandPathDressupRampEntry()) -Path.Log.notice("Loading CAM_DressupRampEntry... done\n") +Path.Log.notice("Loading CAM_DressupRampEntry… done\n") diff --git a/src/Mod/CAM/Path/Dressup/Gui/Tags.py b/src/Mod/CAM/Path/Dressup/Gui/Tags.py index 141c510352..a6a41414f8 100644 --- a/src/Mod/CAM/Path/Dressup/Gui/Tags.py +++ b/src/Mod/CAM/Path/Dressup/Gui/Tags.py @@ -549,7 +549,7 @@ class CommandPathDressupTag: "Pixmap": "CAM_Dressup", "MenuText": QT_TRANSLATE_NOOP("CAM_DressupTag", "Tag"), "ToolTip": QT_TRANSLATE_NOOP( - "CAM_DressupTag", "Creates a Tag Dress-up object from a selected toolpath" + "CAM_DressupTag", "Creates a tag dress-up object from a selected toolpath" ), } diff --git a/src/Mod/CAM/Path/Dressup/Gui/ZCorrect.py b/src/Mod/CAM/Path/Dressup/Gui/ZCorrect.py index 435f699a06..02042472c4 100644 --- a/src/Mod/CAM/Path/Dressup/Gui/ZCorrect.py +++ b/src/Mod/CAM/Path/Dressup/Gui/ZCorrect.py @@ -334,7 +334,9 @@ class CommandPathDressup: "Pixmap": "CAM_Dressup", "MenuText": QT_TRANSLATE_NOOP("CAM_DressupZCorrect", "Z Depth Correction"), "Accel": "", - "ToolTip": QT_TRANSLATE_NOOP("CAM_DressupZCorrect", "Use Probe Map to correct Z depth"), + "ToolTip": QT_TRANSLATE_NOOP( + "CAM_DressupZCorrect", "Corrects Z depth using a probe map" + ), } def IsActive(self): @@ -348,9 +350,7 @@ class CommandPathDressup: # check that the selection contains exactly what we want selection = FreeCADGui.Selection.getSelection() if len(selection) != 1: - FreeCAD.Console.PrintError( - translate("CAM_Dressup", "Please select one toolpath object\n") - ) + FreeCAD.Console.PrintError(translate("CAM_Dressup", "Select one toolpath object\n")) return if not selection[0].isDerivedFrom("Path::Feature"): FreeCAD.Console.PrintError( @@ -358,7 +358,7 @@ class CommandPathDressup: ) return if selection[0].isDerivedFrom("Path::FeatureCompoundPython"): - FreeCAD.Console.PrintError(translate("CAM_Dressup", "Please select a toolpath object")) + FreeCAD.Console.PrintError(translate("CAM_Dressup", "Select a toolpath object")) return # everything ok! @@ -382,4 +382,4 @@ if FreeCAD.GuiUp: # register the FreeCAD command FreeCADGui.addCommand("CAM_DressupZCorrect", CommandPathDressup()) -FreeCAD.Console.PrintLog("Loading PathDressup... done\n") +FreeCAD.Console.PrintLog("Loading PathDressup… done\n") diff --git a/src/Mod/CAM/Path/Dressup/Tags.py b/src/Mod/CAM/Path/Dressup/Tags.py index 891cca86a6..1fcd8e5db5 100644 --- a/src/Mod/CAM/Path/Dressup/Tags.py +++ b/src/Mod/CAM/Path/Dressup/Tags.py @@ -380,7 +380,7 @@ class MapWireToTag: # if there are no edges connected to entry/exit, it means the plunge in/out is vertical # we need to add in the missing segment and collect the new entry/exit edges. if not self.entryEdges: - Path.Log.debug("fill entryEdges ...") + Path.Log.debug("fill entryEdges…") self.realEntry = sorted(self.edgePoints, key=lambda p: (p - self.entry).Length)[0] self.entryEdges = list( [e for e in edges if Path.Geom.edgeConnectsTo(e, self.realEntry)] @@ -389,7 +389,7 @@ class MapWireToTag: else: self.realEntry = None if not self.exitEdges: - Path.Log.debug("fill exitEdges ...") + Path.Log.debug("fill exitEdges…") self.realExit = sorted(self.edgePoints, key=lambda p: (p - self.exit).Length)[0] self.exitEdges = list([e for e in edges if Path.Geom.edgeConnectsTo(e, self.realExit)]) edges.append(Part.Edge(Part.LineSegment(self.realExit, self.exit))) @@ -1206,7 +1206,7 @@ class ObjectTagDressup: try: self.processTags(obj) except Exception as e: - Path.Log.error("processing tags failed clearing all tags ... '%s'" % (e.args[0])) + Path.Log.error("processing tags failed clearing all tags… '%s'" % (e.args[0])) obj.Path = PathUtils.getPathWithPlacement(obj.Base) # update disabled in case there are some additional ones @@ -1245,7 +1245,7 @@ class ObjectTagDressup: Path.Log.error( translate( "CAM_DressupTag", - "Cannot insert holding tags for this path - please select a Profile path", + "Cannot insert holding tags for this path - select a profile path", ) + "\n" ) @@ -1293,14 +1293,14 @@ class ObjectTagDressup: def Create(baseObject, name="DressupTag"): """ - Create(basePath, name='DressupTag') ... create tag dressup object for the given base path. + Create(basePath, name='DressupTag') … create tag dressup object for the given base path. """ if not baseObject.isDerivedFrom("Path::Feature"): Path.Log.error(translate("CAM_DressupTag", "The selected object is not a path") + "\n") return None if baseObject.isDerivedFrom("Path::FeatureCompoundPython"): - Path.Log.error(translate("CAM_DressupTag", "Please select a Profile object")) + Path.Log.error(translate("CAM_DressupTag", "Select a profile object")) return None obj = FreeCAD.ActiveDocument.addObject("Path::FeaturePython", name) @@ -1311,4 +1311,4 @@ def Create(baseObject, name="DressupTag"): return obj -Path.Log.notice("Loading CAM_DressupTag... done\n") +Path.Log.notice("Loading CAM_DressupTag… done\n") diff --git a/src/Mod/CAM/Path/Main/Gui/Camotics.py b/src/Mod/CAM/Path/Main/Gui/Camotics.py index c66fa652f0..2be847ed63 100644 --- a/src/Mod/CAM/Path/Main/Gui/Camotics.py +++ b/src/Mod/CAM/Path/Main/Gui/Camotics.py @@ -309,7 +309,7 @@ class CommandCamoticsSimulate: "Pixmap": "CAM_Camotics", "MenuText": QT_TRANSLATE_NOOP("CAM_Camotics", "CAMotics"), "Accel": "P, C", - "ToolTip": QT_TRANSLATE_NOOP("CAM_Camotics", "Simulate using CAMotics"), + "ToolTip": QT_TRANSLATE_NOOP("CAM_Camotics", "Simulates using CAMotics"), "CmdType": "ForEdit", } @@ -331,4 +331,4 @@ if FreeCAD.GuiUp: FreeCADGui.addCommand("CAM_Camotics", CommandCamoticsSimulate()) -FreeCAD.Console.PrintLog("Loading PathCamoticsSimulateGui ... done\n") +FreeCAD.Console.PrintLog("Loading PathCamoticsSimulateGui… done\n") diff --git a/src/Mod/CAM/Path/Main/Gui/Fixture.py b/src/Mod/CAM/Path/Main/Gui/Fixture.py index 51f4644330..a671cf7b10 100644 --- a/src/Mod/CAM/Path/Main/Gui/Fixture.py +++ b/src/Mod/CAM/Path/Main/Gui/Fixture.py @@ -151,7 +151,7 @@ class CommandPathFixture: return { "Pixmap": "CAM_Datums", "MenuText": QT_TRANSLATE_NOOP("CAM_Fixture", "Fixture"), - "ToolTip": QT_TRANSLATE_NOOP("CAM_Fixture", "Creates a Fixture Offset"), + "ToolTip": QT_TRANSLATE_NOOP("CAM_Fixture", "Creates a fixture offset"), } def IsActive(self): @@ -187,4 +187,4 @@ if FreeCAD.GuiUp: FreeCADGui.addCommand("CAM_Fixture", CommandPathFixture()) -FreeCAD.Console.PrintLog("Loading PathFixture... done\n") +FreeCAD.Console.PrintLog("Loading PathFixture… done\n") diff --git a/src/Mod/CAM/Path/Main/Gui/Inspect.py b/src/Mod/CAM/Path/Main/Gui/Inspect.py index 097a81e221..e6f28bc6ba 100644 --- a/src/Mod/CAM/Path/Main/Gui/Inspect.py +++ b/src/Mod/CAM/Path/Main/Gui/Inspect.py @@ -127,7 +127,7 @@ class GCodeEditorDialog(QtGui.QDialog): lab.setText( translate( "CAM_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) @@ -252,7 +252,7 @@ class CommandPathInspect: def GetResources(self): return { "Pixmap": "CAM_Inspect", - "MenuText": QT_TRANSLATE_NOOP("CAM_Inspect", "Inspect toolPath Commands"), + "MenuText": QT_TRANSLATE_NOOP("CAM_Inspect", "Inspect Toolpath"), "Accel": "P, I", "ToolTip": QT_TRANSLATE_NOOP( "CAM_Inspect", "Inspects the contents of a toolpath object" @@ -271,12 +271,12 @@ class CommandPathInspect: selection = FreeCADGui.Selection.getSelection() if len(selection) != 1: FreeCAD.Console.PrintError( - translate("CAM_Inspect", "Please select exactly one path object") + "\n" + translate("CAM_Inspect", "Select exactly one path object") + "\n" ) return if not (selection[0].isDerivedFrom("Path::Feature")): FreeCAD.Console.PrintError( - translate("CAM_Inspect", "Please select exactly one path object") + "\n" + translate("CAM_Inspect", "Select exactly one path object") + "\n" ) return diff --git a/src/Mod/CAM/Path/Main/Gui/JobCmd.py b/src/Mod/CAM/Path/Main/Gui/JobCmd.py index 63669dc6d1..0867a9e9c4 100644 --- a/src/Mod/CAM/Path/Main/Gui/JobCmd.py +++ b/src/Mod/CAM/Path/Main/Gui/JobCmd.py @@ -54,9 +54,9 @@ class CommandJobCreate: def GetResources(self): return { "Pixmap": "CAM_Job", - "MenuText": QT_TRANSLATE_NOOP("CAM_Job", "Job"), + "MenuText": QT_TRANSLATE_NOOP("CAM_Job", "New Job"), "Accel": "P, J", - "ToolTip": QT_TRANSLATE_NOOP("CAM_Job", "Creates a CAM Job"), + "ToolTip": QT_TRANSLATE_NOOP("CAM_Job", "Creates a CAM job"), } def IsActive(self): @@ -101,7 +101,7 @@ class CommandJobTemplateExport: "MenuText": QT_TRANSLATE_NOOP("CAM_ExportTemplate", "Export Template"), "ToolTip": QT_TRANSLATE_NOOP( "CAM_ExportTemplate", - "Exports CAM Job as a template to be used for other jobs", + "Exports the CAM job as a template to be used for other jobs", ), } @@ -200,4 +200,4 @@ if FreeCAD.GuiUp: FreeCADGui.addCommand("CAM_Job", CommandJobCreate()) FreeCADGui.addCommand("CAM_ExportTemplate", CommandJobTemplateExport()) -FreeCAD.Console.PrintLog("Loading PathJobCmd... done\n") +FreeCAD.Console.PrintLog("Loading PathJobCmd… done\n") diff --git a/src/Mod/CAM/Path/Main/Gui/SanityCmd.py b/src/Mod/CAM/Path/Main/Gui/SanityCmd.py index 32b8f298fe..c15998ca74 100644 --- a/src/Mod/CAM/Path/Main/Gui/SanityCmd.py +++ b/src/Mod/CAM/Path/Main/Gui/SanityCmd.py @@ -50,9 +50,9 @@ class CommandCAMSanity: def GetResources(self): return { "Pixmap": "CAM_Sanity", - "MenuText": QT_TRANSLATE_NOOP("CAM_Sanity", "Check the CAM job for common errors"), + "MenuText": QT_TRANSLATE_NOOP("CAM_Sanity", "Sanity Check"), "Accel": "P, S", - "ToolTip": QT_TRANSLATE_NOOP("CAM_Sanity", "Check the CAM job for common errors"), + "ToolTip": QT_TRANSLATE_NOOP("CAM_Sanity", "Checks the CAM job for common errors"), } def IsActive(self): diff --git a/src/Mod/CAM/Path/Main/Gui/Simulator.py b/src/Mod/CAM/Path/Main/Gui/Simulator.py index a05b1b2ddf..443bf9a859 100644 --- a/src/Mod/CAM/Path/Main/Gui/Simulator.py +++ b/src/Mod/CAM/Path/Main/Gui/Simulator.py @@ -610,9 +610,9 @@ class CommandPathSimulate: def GetResources(self): return { "Pixmap": "CAM_Simulator", - "MenuText": QtCore.QT_TRANSLATE_NOOP("CAM_Simulator", "CAM Simulator"), + "MenuText": QtCore.QT_TRANSLATE_NOOP("CAM_Simulator", "Legacy CAM Simulator"), "Accel": "P, M", - "ToolTip": QtCore.QT_TRANSLATE_NOOP("CAM_Simulator", "Simulate G-code on stock"), + "ToolTip": QtCore.QT_TRANSLATE_NOOP("CAM_Simulator", "Simulates G-code on stock"), } def IsActive(self): @@ -630,4 +630,4 @@ class CommandPathSimulate: if FreeCAD.GuiUp: # register the FreeCAD command FreeCADGui.addCommand("CAM_Simulator", CommandPathSimulate()) - FreeCAD.Console.PrintLog("Loading PathSimulator Gui... done\n") + FreeCAD.Console.PrintLog("Loading PathSimulator Gui… done\n") diff --git a/src/Mod/CAM/Path/Main/Gui/SimulatorGL.py b/src/Mod/CAM/Path/Main/Gui/SimulatorGL.py index 6a1bda33e4..4e83947b00 100644 --- a/src/Mod/CAM/Path/Main/Gui/SimulatorGL.py +++ b/src/Mod/CAM/Path/Main/Gui/SimulatorGL.py @@ -347,9 +347,9 @@ class CommandCAMSimulate: """Command info""" return { "Pixmap": "CAM_SimulatorGL", - "MenuText": QtCore.QT_TRANSLATE_NOOP("CAM_Simulator", "New CAM Simulator"), + "MenuText": QtCore.QT_TRANSLATE_NOOP("CAM_Simulator", "CAM Simulator"), "Accel": "P, N", - "ToolTip": QtCore.QT_TRANSLATE_NOOP("CAM_Simulator", "Simulate G-code on stock"), + "ToolTip": QtCore.QT_TRANSLATE_NOOP("CAM_Simulator", "Simulates G-code on stock"), } def IsActive(self): @@ -369,4 +369,4 @@ class CommandCAMSimulate: if FreeCAD.GuiUp: # register the FreeCAD command FreeCADGui.addCommand("CAM_SimulatorGL", CommandCAMSimulate()) - FreeCAD.Console.PrintLog("Loading PathSimulator Gui... done\n") + FreeCAD.Console.PrintLog("Loading PathSimulator Gui… done\n") diff --git a/src/Mod/CAM/Path/Op/Gui/Array.py b/src/Mod/CAM/Path/Op/Gui/Array.py index 956bb88042..b2a2441be5 100644 --- a/src/Mod/CAM/Path/Op/Gui/Array.py +++ b/src/Mod/CAM/Path/Op/Gui/Array.py @@ -44,7 +44,7 @@ class ObjectArray: "App::PropertyLinkList", "Base", "Path", - QT_TRANSLATE_NOOP("App::Property", "The toolpath(s) to array"), + QT_TRANSLATE_NOOP("App::Property", "The toolpaths to array"), ) obj.addProperty( "App::PropertyEnumeration", @@ -58,7 +58,7 @@ class ObjectArray: "Path", QT_TRANSLATE_NOOP( "App::Property", - "The spacing between the array copies in Linear pattern", + "The spacing between the array copies in linear pattern", ), ) obj.addProperty( @@ -66,7 +66,7 @@ class ObjectArray: "CopiesX", "Path", QT_TRANSLATE_NOOP( - "App::Property", "The number of copies in X direction in Linear pattern" + "App::Property", "The number of copies in X direction in linear pattern" ), ) obj.addProperty( @@ -74,28 +74,28 @@ class ObjectArray: "CopiesY", "Path", QT_TRANSLATE_NOOP( - "App::Property", "The number of copies in Y direction in Linear pattern" + "App::Property", "The number of copies in Y direction in linear pattern" ), ) obj.addProperty( "App::PropertyAngle", "Angle", "Path", - QT_TRANSLATE_NOOP("App::Property", "Total angle in Polar pattern"), + QT_TRANSLATE_NOOP("App::Property", "Total angle in polar pattern"), ) obj.addProperty( "App::PropertyInteger", "Copies", "Path", QT_TRANSLATE_NOOP( - "App::Property", "The number of copies in Linear 1D and Polar pattern" + "App::Property", "The number of copies in linear 1D and polar pattern" ), ) obj.addProperty( "App::PropertyVector", "Centre", "Path", - QT_TRANSLATE_NOOP("App::Property", "The centre of rotation in Polar pattern"), + QT_TRANSLATE_NOOP("App::Property", "The centre of rotation in polar pattern"), ) obj.addProperty( "App::PropertyBool", @@ -143,7 +143,7 @@ class ObjectArray: "App::PropertyString", "CycleTime", "Path", - QT_TRANSLATE_NOOP("App::Property", "Operations Cycle Time Estimation"), + QT_TRANSLATE_NOOP("App::Property", "Operations cycle time estimation"), ) obj.setEditorMode("CycleTime", 1) # read-only @@ -214,7 +214,7 @@ class ObjectArray: "App::PropertyString", "CycleTime", "Path", - QT_TRANSLATE_NOOP("App::Property", "Operations Cycle Time Estimation"), + QT_TRANSLATE_NOOP("App::Property", "Operations cycle time estimation"), ) obj.CycleTime = self.getCycleTimeEstimate(obj) @@ -480,10 +480,7 @@ class CommandPathArray: return { "Pixmap": "CAM_Array", "MenuText": QT_TRANSLATE_NOOP("CAM_Array", "Array"), - "ToolTip": QT_TRANSLATE_NOOP( - "CAM_Array", - "Creates an array from selected toolpath(s)\nwith identical tool controllers and without coolant", - ), + "ToolTip": QT_TRANSLATE_NOOP("CAM_Array", "Creates an array from selected toolpaths"), } def IsActive(self): diff --git a/src/Mod/CAM/Path/Op/Gui/Base.py b/src/Mod/CAM/Path/Op/Gui/Base.py index 470bf3b521..141b79bc75 100644 --- a/src/Mod/CAM/Path/Op/Gui/Base.py +++ b/src/Mod/CAM/Path/Op/Gui/Base.py @@ -1292,8 +1292,8 @@ class CommandSetStartPoint: def GetResources(self): return { "Pixmap": "CAM_StartPoint", - "MenuText": QT_TRANSLATE_NOOP("PathOp", "Pick Start Point"), - "ToolTip": QT_TRANSLATE_NOOP("PathOp", "Pick Start Point"), + "MenuText": QT_TRANSLATE_NOOP("PathOp", "Start Point Selection"), + "ToolTip": QT_TRANSLATE_NOOP("PathOp", "Selects the start point"), } def IsActive(self): @@ -1416,4 +1416,4 @@ def SetupOperation(name, objFactory, opPageClass, pixmap, menuText, toolTip, set FreeCADGui.addCommand("CAM_SetStartPoint", CommandSetStartPoint()) -FreeCAD.Console.PrintLog("Loading PathOpGui... done\n") +FreeCAD.Console.PrintLog("Loading PathOpGui… done\n") diff --git a/src/Mod/CAM/Path/Op/Gui/Comment.py b/src/Mod/CAM/Path/Op/Gui/Comment.py index 796589b7d6..07347c188d 100644 --- a/src/Mod/CAM/Path/Op/Gui/Comment.py +++ b/src/Mod/CAM/Path/Op/Gui/Comment.py @@ -101,7 +101,7 @@ class CommandPathComment: return { "Pixmap": "CAM_Comment", "MenuText": QT_TRANSLATE_NOOP("CAM_Comment", "Comment"), - "ToolTip": QT_TRANSLATE_NOOP("CAM_Comment", "Add a Comment to your CNC program"), + "ToolTip": QT_TRANSLATE_NOOP("CAM_Comment", "Adds a Comment to the CNC program"), } def IsActive(self): @@ -112,7 +112,7 @@ class CommandPathComment: return False def Activated(self): - FreeCAD.ActiveDocument.openTransaction("Create a Comment in your CNC program") + FreeCAD.ActiveDocument.openTransaction("Create a Comment in the CNC program") FreeCADGui.addModule("Path.Op.Gui.Comment") snippet = """ import Path @@ -134,4 +134,4 @@ if FreeCAD.GuiUp: FreeCADGui.addCommand("CAM_Comment", CommandPathComment()) -FreeCAD.Console.PrintLog("Loading PathComment... done\n") +FreeCAD.Console.PrintLog("Loading PathComment… done\n") diff --git a/src/Mod/CAM/Path/Op/Gui/Copy.py b/src/Mod/CAM/Path/Op/Gui/Copy.py index bdde0dcd20..69e21d566c 100644 --- a/src/Mod/CAM/Path/Op/Gui/Copy.py +++ b/src/Mod/CAM/Path/Op/Gui/Copy.py @@ -147,4 +147,4 @@ if FreeCAD.GuiUp: # register the FreeCAD command FreeCADGui.addCommand("CAM_Copy", CommandPathCopy()) -FreeCAD.Console.PrintLog("Loading PathCopy... done\n") +FreeCAD.Console.PrintLog("Loading PathCopy… done\n") diff --git a/src/Mod/CAM/Path/Op/Gui/PathShapeTC.py b/src/Mod/CAM/Path/Op/Gui/PathShapeTC.py index b7c5eeeec7..531fa5f904 100644 --- a/src/Mod/CAM/Path/Op/Gui/PathShapeTC.py +++ b/src/Mod/CAM/Path/Op/Gui/PathShapeTC.py @@ -62,21 +62,21 @@ def _addBaseProperties(obj): "App::PropertyString", "Comment", "Path", - QT_TRANSLATE_NOOP("App::Property", "An optional comment for this Operation"), + QT_TRANSLATE_NOOP("App::Property", "An optional comment for this operation"), locked=True, ) obj.addProperty( "App::PropertyString", "UserLabel", "Path", - QT_TRANSLATE_NOOP("App::Property", "User Assigned Label"), + QT_TRANSLATE_NOOP("App::Property", "User assigned label"), locked=True, ) obj.addProperty( "App::PropertyString", "CycleTime", "Path", - QT_TRANSLATE_NOOP("App::Property", "Operations Cycle Time Estimation"), + QT_TRANSLATE_NOOP("App::Property", "Operations cycle time estimation"), locked=True, ) obj.setEditorMode("CycleTime", 1) # Set property read-only @@ -180,9 +180,10 @@ class CommandPathShapeTC: def GetResources(self): return { "Pixmap": "CAM_ShapeTC", - "MenuText": QT_TRANSLATE_NOOP("CAM_PathShapeTC", "Path from Shape TC"), + "MenuText": QT_TRANSLATE_NOOP("CAM_PathShapeTC", "Path From Shape TC"), "ToolTip": QT_TRANSLATE_NOOP( - "CAM_PathShapeTC", "Creates path from selected shapes with tool controller" + "CAM_PathShapeTC", + "Creates a path from the selected shapes with the tool controller", ), } diff --git a/src/Mod/CAM/Path/Op/Gui/SimpleCopy.py b/src/Mod/CAM/Path/Op/Gui/SimpleCopy.py index 9f6fb9a4a8..ed7db44ec8 100644 --- a/src/Mod/CAM/Path/Op/Gui/SimpleCopy.py +++ b/src/Mod/CAM/Path/Op/Gui/SimpleCopy.py @@ -55,12 +55,12 @@ class CommandPathSimpleCopy: selection = FreeCADGui.Selection.getSelection() if len(selection) != 1: FreeCAD.Console.PrintError( - translate("CAM_SimpleCopy", "Please select exactly one toolpath object") + "\n" + translate("CAM_SimpleCopy", "Select exactly one toolpath object") + "\n" ) return if not (selection[0].isDerivedFrom("Path::Feature")): FreeCAD.Console.PrintError( - translate("CAM_SimpleCopy", "Please select exactly one toolpath object") + "\n" + translate("CAM_SimpleCopy", "Select exactly one toolpath object") + "\n" ) return diff --git a/src/Mod/CAM/Path/Op/Gui/Stop.py b/src/Mod/CAM/Path/Op/Gui/Stop.py index fa887eff4a..e633970906 100644 --- a/src/Mod/CAM/Path/Op/Gui/Stop.py +++ b/src/Mod/CAM/Path/Op/Gui/Stop.py @@ -37,7 +37,7 @@ class Stop: "App::PropertyEnumeration", "Stop", "Path", - QT_TRANSLATE_NOOP("App::Property", "Add Optional or Mandatory Stop to the program"), + QT_TRANSLATE_NOOP("App::Property", "Add an optional or mandatory stop to the program"), ) obj.Stop = ["Optional", "Mandatory"] obj.Proxy = self @@ -107,7 +107,7 @@ class CommandPathStop: "Pixmap": "CAM_Stop", "MenuText": QT_TRANSLATE_NOOP("CAM_Stop", "Stop"), "ToolTip": QT_TRANSLATE_NOOP( - "CAM_Stop", "Add Optional or Mandatory Stop to the program" + "CAM_Stop", "Adds an optional or mandatory stop to the program" ), } @@ -142,4 +142,4 @@ if FreeCAD.GuiUp: FreeCADGui.addCommand("CAM_Stop", CommandPathStop()) -FreeCAD.Console.PrintLog("Loading PathStop... done\n") +FreeCAD.Console.PrintLog("Loading PathStop… done\n") diff --git a/src/Mod/CAM/Path/Post/Command.py b/src/Mod/CAM/Path/Post/Command.py index fc9dfd66da..6f6f52149f 100644 --- a/src/Mod/CAM/Path/Post/Command.py +++ b/src/Mod/CAM/Path/Post/Command.py @@ -108,7 +108,7 @@ class CommandPathPost: "Pixmap": "CAM_Post", "MenuText": QT_TRANSLATE_NOOP("CAM_Post", "Post Process"), "Accel": "P, P", - "ToolTip": QT_TRANSLATE_NOOP("CAM_Post", "Post Process the selected Job"), + "ToolTip": QT_TRANSLATE_NOOP("CAM_Post", "Post Processes the selected job"), } def IsActive(self): @@ -262,4 +262,4 @@ if FreeCAD.GuiUp: # register the FreeCAD command FreeCADGui.addCommand("CAM_Post", CommandPathPost()) -FreeCAD.Console.PrintLog("Loading PathPost... done\n") +FreeCAD.Console.PrintLog("Loading PathPost… done\n") diff --git a/src/Mod/CAM/Path/Tool/Gui/Controller.py b/src/Mod/CAM/Path/Tool/Gui/Controller.py index 0a5374b5af..bc40b82154 100644 --- a/src/Mod/CAM/Path/Tool/Gui/Controller.py +++ b/src/Mod/CAM/Path/Tool/Gui/Controller.py @@ -140,8 +140,10 @@ class CommandPathToolController(object): def GetResources(self): return { "Pixmap": "CAM_LengthOffset", - "MenuText": QT_TRANSLATE_NOOP("CAM_ToolController", "Add Tool Controller to the Job"), - "ToolTip": QT_TRANSLATE_NOOP("CAM_ToolController", "Add Tool Controller"), + "MenuText": QT_TRANSLATE_NOOP("CAM_ToolController", "Tool Controller"), + "ToolTip": QT_TRANSLATE_NOOP( + "CAM_ToolController", "Adds a new tool controller to the active job" + ), } def selectedJob(self): @@ -364,4 +366,4 @@ if FreeCAD.GuiUp: # register the FreeCAD command FreeCADGui.addCommand("CAM_ToolController", CommandPathToolController()) -FreeCAD.Console.PrintLog("Loading PathToolControllerGui... done\n") +FreeCAD.Console.PrintLog("Loading PathToolControllerGui… done\n") diff --git a/src/Mod/CAM/Path/Tool/library/ui/cmd.py b/src/Mod/CAM/Path/Tool/library/ui/cmd.py index 3118935b39..a1f9f94f99 100644 --- a/src/Mod/CAM/Path/Tool/library/ui/cmd.py +++ b/src/Mod/CAM/Path/Tool/library/ui/cmd.py @@ -48,8 +48,8 @@ class CommandToolBitLibraryDockOpen: def GetResources(self): return { "Pixmap": "CAM_ToolTable", - "MenuText": QT_TRANSLATE_NOOP("CAM_ToolBitDock", "ToolBit Dock"), - "ToolTip": QT_TRANSLATE_NOOP("CAM_ToolBitDock", "Toggle the Toolbit Dock"), + "MenuText": QT_TRANSLATE_NOOP("CAM_ToolBitDock", "Toolbit Dock"), + "ToolTip": QT_TRANSLATE_NOOP("CAM_ToolBitDock", "Toggles the toolbit dock"), "Accel": "P, T", "CmdType": "ForEdit", } @@ -73,9 +73,9 @@ class CommandLibraryEditorOpen: def GetResources(self): return { "Pixmap": "CAM_ToolTable", - "MenuText": QT_TRANSLATE_NOOP("CAM_ToolBitLibraryOpen", "ToolBit Library editor"), + "MenuText": QT_TRANSLATE_NOOP("CAM_ToolBitLibraryOpen", "Toolbit Library Editor"), "ToolTip": QT_TRANSLATE_NOOP( - "CAM_ToolBitLibraryOpen", "Open an editor to manage ToolBit libraries" + "CAM_ToolBitLibraryOpen", "Opens an editor to manage toolbit libraries" ), "CmdType": "ForEdit", } @@ -95,4 +95,4 @@ if FreeCAD.GuiUp: BarList = ["CAM_ToolBitDock"] MenuList = ["CAM_ToolBitLibraryOpen", "CAM_ToolBitDock"] -FreeCAD.Console.PrintLog("Loading PathToolBitLibraryCmd... done\n") +FreeCAD.Console.PrintLog("Loading PathToolBitLibraryCmd… done\n") diff --git a/src/Mod/CAM/Path/Tool/toolbit/ui/cmd.py b/src/Mod/CAM/Path/Tool/toolbit/ui/cmd.py index d1b3254043..e417120e0a 100644 --- a/src/Mod/CAM/Path/Tool/toolbit/ui/cmd.py +++ b/src/Mod/CAM/Path/Tool/toolbit/ui/cmd.py @@ -49,8 +49,8 @@ class CommandToolBitCreate: def GetResources(self): return { "Pixmap": "CAM_ToolBit", - "MenuText": QT_TRANSLATE_NOOP("CAM_ToolBitCreate", "Create Tool"), - "ToolTip": QT_TRANSLATE_NOOP("CAM_ToolBitCreate", "Creates a new ToolBit object"), + "MenuText": QT_TRANSLATE_NOOP("CAM_ToolBitCreate", "New Tool"), + "ToolTip": QT_TRANSLATE_NOOP("CAM_ToolBitCreate", "Creates a new toolbit object"), } def IsActive(self): @@ -73,14 +73,14 @@ class CommandToolBitSave: def GetResources(self): if self.saveAs: - menuTxt = QT_TRANSLATE_NOOP("CAM_ToolBitSaveAs", "Save Tool as...") + menuTxt = QT_TRANSLATE_NOOP("CAM_ToolBitSaveAs", "Save Tool As…") else: menuTxt = QT_TRANSLATE_NOOP("CAM_ToolBitSave", "Save Tool") return { "Pixmap": "CAM_ToolBit", "MenuText": menuTxt, "ToolTip": QT_TRANSLATE_NOOP( - "CAM_ToolBitSave", "Save an existing ToolBit object to a file" + "CAM_ToolBitSave", "Saves an existing toolbit object to a file" ), } @@ -123,7 +123,7 @@ class CommandToolBitLoad: "Pixmap": "CAM_ToolBit", "MenuText": QT_TRANSLATE_NOOP("CAM_ToolBitLoad", "Load Tool"), "ToolTip": QT_TRANSLATE_NOOP( - "CAM_ToolBitLoad", "Load an existing ToolBit object from a file" + "CAM_ToolBitLoad", "Loads an existing toolbit object from a file" ), } diff --git a/src/Mod/CAM/PathCommands.py b/src/Mod/CAM/PathCommands.py index 9658b7f8e3..b14a3c9431 100644 --- a/src/Mod/CAM/PathCommands.py +++ b/src/Mod/CAM/PathCommands.py @@ -59,7 +59,7 @@ class _CommandSelectLoop: "MenuText": QT_TRANSLATE_NOOP("CAM_SelectLoop", "Finish Selecting Loop"), "Accel": "P, L", "ToolTip": QT_TRANSLATE_NOOP( - "CAM_SelectLoop", "Complete the selection of edges that form a loop" + "CAM_SelectLoop", "Completes the selection of edges that form a loop" ), "CmdType": "ForEdit", } @@ -142,12 +142,10 @@ class _ToggleOperation: def GetResources(self): return { "Pixmap": "CAM_OpActive", - "MenuText": QT_TRANSLATE_NOOP( - "CAM_OpActiveToggle", "Toggle the Active State of the Operation" - ), + "MenuText": QT_TRANSLATE_NOOP("CAM_OpActiveToggle", "Toggle Operation"), "Accel": "P, X", "ToolTip": QT_TRANSLATE_NOOP( - "CAM_OpActiveToggle", "Toggle the Active State of the Operation" + "CAM_OpActiveToggle", "Toggles the active state of the operation" ), "CmdType": "ForEdit", } @@ -185,8 +183,8 @@ class _CopyOperation: def GetResources(self): return { "Pixmap": "CAM_OpCopy", - "MenuText": QT_TRANSLATE_NOOP("CAM_OperationCopy", "Copy the operation in the job"), - "ToolTip": QT_TRANSLATE_NOOP("CAM_OperationCopy", "Copy the operation in the job"), + "MenuText": QT_TRANSLATE_NOOP("CAM_OperationCopy", "Copy Operation"), + "ToolTip": QT_TRANSLATE_NOOP("CAM_OperationCopy", "Copies the operation in the job"), "CmdType": "ForEdit", }