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/GCodeGzReader
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/GCodeGzReader')
-rw-r--r--plugins/GCodeGzReader/GCodeGzReader.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/GCodeGzReader/GCodeGzReader.py b/plugins/GCodeGzReader/GCodeGzReader.py
index 85a5b01107..fb8bbe0ecd 100644
--- a/plugins/GCodeGzReader/GCodeGzReader.py
+++ b/plugins/GCodeGzReader/GCodeGzReader.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2018 Ultimaker B.V.
+# Copyright (c) 2020 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
import gzip
@@ -19,7 +19,7 @@ class GCodeGzReader(MeshReader):
MimeTypeDatabase.addMimeType(
MimeType(
name = "application/x-cura-compressed-gcode-file",
- comment = "Cura Compressed GCode File",
+ comment = "Cura Compressed G-code File",
suffixes = ["gcode.gz"]
)
)