summaryrefslogtreecommitdiffstats
path: root/share/extensions/gcodetools.py
diff options
context:
space:
mode:
authorIvan Mas??r <helix84@centrum.sk>2016-12-30 16:11:45 +0000
committerIvan Masár <helix84@centrum.sk>2016-12-30 16:11:45 +0000
commit1718bfb10a12c22b9f4a9d502e715634c2cc153c (patch)
tree29cad2c565b35418780713c6e40adf992c8066dd /share/extensions/gcodetools.py
parent* [INTL:sk] Slovak translation update (diff)
downloadinkscape-1718bfb10a12c22b9f4a9d502e715634c2cc153c.tar.gz
inkscape-1718bfb10a12c22b9f4a9d502e715634c2cc153c.zip
fix typos, add translator comment
(bzr r15373)
Diffstat (limited to 'share/extensions/gcodetools.py')
-rwxr-xr-xshare/extensions/gcodetools.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/extensions/gcodetools.py b/share/extensions/gcodetools.py
index dab0312af..23a3e1a1c 100755
--- a/share/extensions/gcodetools.py
+++ b/share/extensions/gcodetools.py
@@ -3433,7 +3433,7 @@ class Gcodetools(inkex.Effect):
for subpath in csp :
for sp1, sp2 in zip(subpath,subpath[1:]) :
polygon.add([csp_segment_convex_hull(sp1,sp2)])
- #print_("Redused edges count from", sum([len(poly) for poly in polygon.polygon ]) )
+ #print_("Reduced edges count from", sum([len(poly) for poly in polygon.polygon ]) )
polygon.hull()
original_paths += [path]
polygons += [polygon]
@@ -3574,7 +3574,7 @@ class Gcodetools(inkex.Effect):
self.OptionParser.add_option("", "--biarc-max-split-depth", action="store", type="int", dest="biarc_max_split_depth", default="4", help="Defines maximum depth of splitting while approximating using biarcs.")
self.OptionParser.add_option("", "--path-to-gcode-order", action="store", type="string", dest="path_to_gcode_order", default="path by path", help="Defines cutting order path by path or layer by layer.")
self.OptionParser.add_option("", "--path-to-gcode-depth-function",action="store", type="string", dest="path_to_gcode_depth_function", default="zd", help="Path to gcode depth function.")
- self.OptionParser.add_option("", "--path-to-gcode-sort-paths", action="store", type="inkbool", dest="path_to_gcode_sort_paths", default=True, help="Sort paths to reduse rapid distance.")
+ self.OptionParser.add_option("", "--path-to-gcode-sort-paths", action="store", type="inkbool", dest="path_to_gcode_sort_paths", default=True, help="Sort paths to reduce rapid distance.")
self.OptionParser.add_option("", "--comment-gcode", action="store", type="string", dest="comment_gcode", default="", help="Comment Gcode")
self.OptionParser.add_option("", "--comment-gcode-from-properties",action="store", type="inkbool", dest="comment_gcode_from_properties", default=False,help="Get additional comments from Object Properties")