diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2015-02-07 17:04:27 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx.marker.es> | 2015-02-07 17:04:27 +0000 |
| commit | e1f0d7a8e726072bf8452164fafc8bb037dfebff (patch) | |
| tree | 7e5c50a03cd0eab373005ba1c49eb0076d011395 /share/extensions/funcplot.py | |
| parent | update to trunk (diff) | |
| parent | Distribute autogen.sh. Fixes build on systems that need to reconfigure intltool (diff) | |
| download | inkscape-e1f0d7a8e726072bf8452164fafc8bb037dfebff.tar.gz inkscape-e1f0d7a8e726072bf8452164fafc8bb037dfebff.zip | |
update to trunk
(bzr r13645.1.5)
Diffstat (limited to 'share/extensions/funcplot.py')
| -rwxr-xr-x | share/extensions/funcplot.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/extensions/funcplot.py b/share/extensions/funcplot.py index 7f8fdafe1..606fb0c28 100755 --- a/share/extensions/funcplot.py +++ b/share/extensions/funcplot.py @@ -45,7 +45,7 @@ def drawfunction(xstart, xend, ybottom, ytop, samples, width, height, left, bott # coords and scales based on the source rect if xstart == xend: - inkex.errormsg(_("x-interval cannot be zero. Please modify 'Start X' or 'End X'")) + inkex.errormsg(_("x-interval cannot be zero. Please modify 'Start X value' or 'End X alue'")) return [] scalex = width / (xend - xstart) xoff = left @@ -57,7 +57,7 @@ def drawfunction(xstart, xend, ybottom, ytop, samples, width, height, left, bott coordx = lambda x: x * polar_scalex + centerx #convert x-value to coordinate if ytop == ybottom: - inkex.errormsg(_("y-interval cannot be zero. Please modify 'Y top' or 'Y bottom'")) + inkex.errormsg(_("y-interval cannot be zero. Please modify 'Y value of rectangle's top' or 'Y value of rectangle's bottom'")) return [] scaley = height / (ytop - ybottom) yoff = bottom |
