diff options
| author | Liam P. White <inkscapebrony@gmail.com> | 2014-10-25 18:36:10 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebrony@gmail.com> | 2014-10-25 18:36:10 +0000 |
| commit | 17f09296aa0beff56222e2d9c24f92a8ce94eef2 (patch) | |
| tree | 9eae706e5f1145ee3184e41432f6d4315a53dce5 /share | |
| parent | Update perspective-envelope to be affected by the clip or mask on LPE patch (diff) | |
| parent | Cleaned casts from sp-shape by fixing member type. (diff) | |
| download | inkscape-17f09296aa0beff56222e2d9c24f92a8ce94eef2.tar.gz inkscape-17f09296aa0beff56222e2d9c24f92a8ce94eef2.zip | |
Update to trunk r13638
(bzr r13341.1.286)
Diffstat (limited to 'share')
| -rwxr-xr-x | share/extensions/gcodetools.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/extensions/gcodetools.py b/share/extensions/gcodetools.py index b9e6348f2..12f438cca 100755 --- a/share/extensions/gcodetools.py +++ b/share/extensions/gcodetools.py @@ -3321,7 +3321,7 @@ class Gcodetools(inkex.Effect): self.error(_("No paths are selected! Trying to work on all available paths."),"warning") if self.selected_paths == {}: - self.error(_("Noting is selected. Please select something."),"warning") + self.error(_("Nothing is selected. Please select something."),"warning") a = self.options.plasma_prepare_corners_tolerance corner_tolerance = cross([1.,0.], [math.cos(a),math.sin(a)]) @@ -4664,7 +4664,7 @@ class Gcodetools(inkex.Effect): ################################################################################ def dxfpoints(self): if self.selected_paths == {}: - self.error(_("Noting is selected. Please select something to convert to drill point (dxfpoint) or clear point sign."),"warning") + self.error(_("Nothing is selected. Please select something to convert to drill point (dxfpoint) or clear point sign."),"warning") for layer in self.layers : if layer in self.selected_paths : for path in self.selected_paths[layer]: |
