From d641c86854542bed3514da4e7c3d15035fe1b742 Mon Sep 17 00:00:00 2001 From: Kris De Gussem Date: Tue, 3 Feb 2015 17:06:14 +0100 Subject: Typos (Bug #1417127) (bzr r13895) --- share/extensions/funcplot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'share/extensions/funcplot.py') 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 -- cgit v1.2.3