Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2020-07-20 14:36:49 +0300
committerGhostkeeper <rubend@tutanota.com>2020-07-20 14:36:49 +0300
commitdb15bc84cf32a6f454e7a4a2fcc362fa5d7640b3 (patch)
tree5810661f40dbb09299cfa14fa61c8297b1405231 /plugins/PostProcessingPlugin
parente6c305de40ca5836f8ca064169a889afbe451e7f (diff)
Correct and consistent spelling of g-code
This spelling is in Ultimaker's style guide. We use g-code, and capitalise the G if it's at the start of a sentence or header. Pretty good score, considering there are literally thousands of user- or log-visible strings mentioning g-code across Cura.
Diffstat (limited to 'plugins/PostProcessingPlugin')
-rw-r--r--plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py6
-rw-r--r--plugins/PostProcessingPlugin/scripts/PauseAtHeight.py4
-rw-r--r--plugins/PostProcessingPlugin/scripts/TimeLapse.py4
3 files changed, 9 insertions, 5 deletions
diff --git a/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py b/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py
index c21993aad1..5fb506b42b 100644
--- a/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py
+++ b/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py
@@ -1,3 +1,5 @@
+# Copyright (c) 2020 Ultimaker B.V.
+# Cura is released under the terms of the LGPLv3 or higher.
# Created by Wayne Porter
from ..Script import Script
@@ -24,8 +26,8 @@ class InsertAtLayerChange(Script):
},
"gcode_to_add":
{
- "label": "GCODE to insert.",
- "description": "GCODE to add before or after layer change.",
+ "label": "G-code to insert.",
+ "description": "G-code to add before or after layer change.",
"type": "str",
"default_value": ""
}
diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py
index f28ed29c38..fc7bfec60a 100644
--- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py
+++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py
@@ -188,14 +188,14 @@ class PauseAtHeight(Script):
"custom_gcode_before_pause":
{
"label": "G-code Before Pause",
- "description": "Any custom GCODE to run before the pause, for example, M300 S440 P200 to beep.",
+ "description": "Any custom g-code to run before the pause, for example, M300 S440 P200 to beep.",
"type": "str",
"default_value": ""
},
"custom_gcode_after_pause":
{
"label": "G-code After Pause",
- "description": "Any custom GCODE to run after the pause, for example, M300 S440 P200 to beep.",
+ "description": "Any custom g-code to run after the pause, for example, M300 S440 P200 to beep.",
"type": "str",
"default_value": ""
}
diff --git a/plugins/PostProcessingPlugin/scripts/TimeLapse.py b/plugins/PostProcessingPlugin/scripts/TimeLapse.py
index 427f80315d..41fd4a5805 100644
--- a/plugins/PostProcessingPlugin/scripts/TimeLapse.py
+++ b/plugins/PostProcessingPlugin/scripts/TimeLapse.py
@@ -1,3 +1,5 @@
+# Copyright (c) 2020 Ultimaker B.V.
+# Cura is released under the terms of the LGPLv3 or higher.
# Created by Wayne Porter
from ..Script import Script
@@ -18,7 +20,7 @@ class TimeLapse(Script):
"trigger_command":
{
"label": "Trigger camera command",
- "description": "Gcode command used to trigger camera.",
+ "description": "G-code command used to trigger camera.",
"type": "str",
"default_value": "M240"
},