summaryrefslogtreecommitdiffstats
path: root/share/extensions/funcplot.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/extensions/funcplot.py')
-rwxr-xr-xshare/extensions/funcplot.py4
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